sso-kustom/resources/hydra-dispatcher/resources/hydra-dispatcher-deployment...

92 lines
2.4 KiB
YAML
Raw Normal View History

2023-01-25 20:27:27 +01:00
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/name: hydra-dispatcher
2023-01-25 20:27:27 +01:00
name: hydra-dispatcher
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: hydra-dispatcher
2023-01-25 20:27:27 +01:00
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: hydra-dispatcher
2023-01-25 20:27:27 +01:00
spec:
containers:
2023-06-30 14:04:26 +02:00
- name: hydra-dispatcher-php-fpm
image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.12.15-develop.903.b675347
2023-06-30 14:10:07 +02:00
args: ["/usr/sbin/php-fpm81", "-F", "-e"]
2023-11-02 08:51:20 +01:00
readinessProbe:
exec:
command:
- sh
- -c
- test -f /etc/php81/php-fpm.d/www.conf
livenessProbe:
exec:
command:
- php
- bin/console
- -V
initialDelaySeconds: 10
periodSeconds: 30
2023-06-30 14:04:26 +02:00
env:
- name: PHP_FPM_LISTEN
value: 127.0.0.1:9000
- name: PHP_MEMORY_LIMIT
value: 128m
- name: PHP_FPM_MEMORY_LIMIT
value: 128m
envFrom:
- configMapRef:
name: hydra-dispatcher-env
volumeMounts:
- mountPath: /app/config/hydra
name: hydra-dispatcher-apps
2023-06-30 14:04:26 +02:00
resources: {}
- image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.12.15-develop.903.b675347
2023-06-30 14:04:26 +02:00
imagePullPolicy: Always
name: hydra-dispatcher-nginx
args: ["/usr/sbin/nginx"]
2023-11-02 08:51:20 +01:00
readinessProbe:
httpGet:
path: /health
port: 8080
2023-11-02 08:51:20 +01:00
initialDelaySeconds: 5
timeoutSeconds: 5
periodSeconds: 10
livenessProbe:
httpGet:
path: /health
port: 8080
2023-11-02 08:51:20 +01:00
initialDelaySeconds: 15
timeoutSeconds: 5
periodSeconds: 15
2023-06-30 14:04:26 +02:00
envFrom:
- configMapRef:
name: hydra-dispatcher-env
env:
- name: NGINX_APP_UPSTREAM_BACKEND_SERVER
value: 127.0.0.1:9000
- name: NGINX_APP_ROOT
2023-06-30 14:10:07 +02:00
value: "/public/"
2023-06-30 14:04:26 +02:00
- name: NGINX_APP_PHP_INDEX
value: "/index.php"
- name: NGINX_ERROR_LOG_LEVEL
value: "warn"
- name: NGINX_APP_PHP_NON_FILE_PATTERN
value: "^/index\\.php(/|$)"
ports:
2023-06-30 14:04:26 +02:00
- containerPort: 8080
resources: {}
2023-01-25 20:27:27 +01:00
restartPolicy: Always
volumes:
- name: hydra-dispatcher-apps
configMap:
name: hydra-dispatcher-apps