Voici la documentation : https://geoplateforme.pages.gpf-tech.ign.fr/documentation

Skip to content
Extraits de code Groupes Projets

feat(probes): IGNGPF-2754 enable health file

Fusionnées Matthieu Proboeuf a demandé de fusionner feat/IGNGPF-2754 vers main
2 fichiers
+ 78
34
Comparer les modifications
  • Côte à côte
  • En ligne
Fichiers
2
@@ -52,11 +52,7 @@ spec:
{{- toYaml .Values.additionalVolumeMounts | nindent 12 }}
{{- end }}
startupProbe:
httpGet:
path: /
port: http
failureThreshold: 9
periodSeconds: 10
{{- toYaml .Values.startupProbe | nindent 12 }}
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
@@ -76,29 +72,11 @@ spec:
{{- toYaml .Values.sideContainer.additionalVolumeMounts | nindent 12 }}
{{- end }}
livenessProbe:
exec:
command:
- /bin/bash
- -c
- echo "OK"
initialDelaySeconds: 10
periodSeconds: 5
{{- toYaml .Values.sideContainer.livenessProbe | nindent 12 }}
startupProbe:
exec:
command:
- /bin/bash
- -c
- echo "OK"
failureThreshold: 9
periodSeconds: 10
{{- toYaml .Values.sideContainer.startupProbe | nindent 12 }}
readinessProbe:
exec:
command:
- /bin/bash
- -c
- echo "OK"
initialDelaySeconds: 10
periodSeconds: 30
{{- toYaml .Values.sideContainer.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.sideContainer.resources | nindent 12 }}
env:
@@ -111,9 +89,10 @@ spec:
{{- if .Values.graphDataVolume}}
{{- toYaml .Values.graphDataVolume | nindent 10 }}
{{- end }}
- name: road2-service-dir
emptyDir: {}
- name: health
emptyDir: {}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Chargement en cours