This commit is contained in:
2023-07-28 20:55:24 +02:00
parent 25e0c22df7
commit c0e5ae4f9a
3 changed files with 157 additions and 90 deletions

View File

@@ -67,9 +67,28 @@ resource "kubectl_manifest" "collabora_deploy" {
- name: http
containerPort: 9980
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
scheme: HTTP
initialDelaySeconds: 120
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
readinessProbe:
httpGet:
path: /
port: http
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 2
successThreshold: 1
failureThreshold: 3
securityContext:
allowPrivilegeEscalation: true
privileged: true
capabilities:
add:
- MKNOD