test
This commit is contained in:
parent
85ec6f03c8
commit
f8b5caa53a
|
@ -67,14 +67,14 @@ spec:
|
|||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8080
|
||||
port: 80
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 10
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8080
|
||||
port: 80
|
||||
initialDelaySeconds: 15
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 15
|
||||
|
@ -87,14 +87,19 @@ spec:
|
|||
- name: CADDY_HTTPS_PORT
|
||||
value: "8443"
|
||||
- name: CADDY_HTTP_PORT
|
||||
value: "8080"
|
||||
value: "80"
|
||||
- name: CADDY_DATA_FS
|
||||
value: "/tmp/caddy"
|
||||
- name: CADDY_APP_ROOT_PUBLIC
|
||||
value: "/app/public/"
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
- containerPort: 80
|
||||
resources: {}
|
||||
volumeMounts:
|
||||
- name: caddy-data
|
||||
mountPath: /tmp/caddy
|
||||
- name: caddy-var
|
||||
mountPath: /var/caddy
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
runAsGroup: 1000
|
||||
|
@ -104,3 +109,10 @@ spec:
|
|||
- name: hydra-dispatcher-apps
|
||||
configMap:
|
||||
name: hydra-dispatcher-apps
|
||||
- name: caddy-data
|
||||
emptyDir:
|
||||
sizeLimit: 128Mi
|
||||
- name: caddy-var
|
||||
emptyDir:
|
||||
sizeLimit: 256Mi
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ metadata:
|
|||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 8080
|
||||
port: 80
|
||||
selector:
|
||||
app.kubernetes.io/name: hydra-dispatcher
|
||||
status:
|
||||
|
|
Loading…
Reference in New Issue