update hydra-dispatcher probes and image ref

This commit is contained in:
Matthieu Lamalle 2023-11-02 09:37:00 +01:00 committed by William Petit
parent 63c5d7259c
commit ee2bb1ea45
1 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ spec:
spec: spec:
containers: containers:
- name: hydra-dispatcher-php-fpm - name: hydra-dispatcher-php-fpm
image: reg.cadoles.com/cadoles/hydra-dispatcher-kube:0.0.1 image: reg.cadoles.com/cadoles/hydra-dispatcher-base:0.0.1
args: ["/usr/sbin/php-fpm81", "-F", "-e"] args: ["/usr/sbin/php-fpm81", "-F", "-e"]
readinessProbe: readinessProbe:
exec: exec:
@ -49,20 +49,20 @@ spec:
name: hydra-dispatcher-apps name: hydra-dispatcher-apps
resources: {} resources: {}
- image: reg.cadoles.com/cadoles/hydra-dispatcher-kube:0.0.1 - image: reg.cadoles.com/cadoles/hydra-dispatcher-base:0.0.1
imagePullPolicy: Always imagePullPolicy: Always
name: hydra-dispatcher-nginx name: hydra-dispatcher-nginx
args: ["/usr/sbin/nginx"] args: ["/usr/sbin/nginx"]
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /oauth2/auth path: /health
port: 80 port: 80
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /oauth2/auth path: /health
port: 80 port: 80
initialDelaySeconds: 15 initialDelaySeconds: 15
timeoutSeconds: 5 timeoutSeconds: 5