From 4382dcea510df9d15a6eab1c869e56f342f5a5f7 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Thu, 20 Mar 2025 19:05:08 +0100 Subject: [PATCH] no probes --- deploy/df-wiki/templates/deployment.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/deploy/df-wiki/templates/deployment.yaml b/deploy/df-wiki/templates/deployment.yaml index e38fd035..b400b90d 100644 --- a/deploy/df-wiki/templates/deployment.yaml +++ b/deploy/df-wiki/templates/deployment.yaml @@ -33,7 +33,7 @@ spec: - name: init-directory image: busybox command: ["/bin/sh", "-c"] - args: ["mkdir -p /struct/wiki", "touch /struct/wiki/index.html", "chown -R 101:101 /struct/wiki"] + args: ["mkdir -p /struct/wiki"] volumeMounts: - name: structure-data-pvc mountPath: /struct @@ -47,14 +47,14 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http + # livenessProbe: + # httpGet: + # path: / + # port: http + # readinessProbe: + # httpGet: + # path: / + # port: http resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: -- GitLab