Loading deploy/kubernetes/chart/templates/fileServer/deployment.yaml +2 −12 Original line number Diff line number Diff line Loading @@ -66,18 +66,8 @@ spec: - name: http containerPort: 8080 env: {{ toYaml $fileServer.extraEnv | nindent 12 }} readinessProbe: &probe httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: <<: *probe initialDelaySeconds: 300 readinessProbe: {{ toYaml $fileServer.readinessProbe | nindent 12 }} livenessProbe: {{ toYaml $fileServer.livenessProbe | nindent 12 }} {{- with .Values.data.securityContext }} securityContext: {{ toYaml . | nindent 12 }} {{- end }} Loading deploy/kubernetes/chart/values.yaml +18 −0 Original line number Diff line number Diff line Loading @@ -385,6 +385,24 @@ data: # The tolerations for the file server pod # See https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ tolerations: readinessProbe: httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 300 periodSeconds: 10 ### # Index node configuration Loading Loading
deploy/kubernetes/chart/templates/fileServer/deployment.yaml +2 −12 Original line number Diff line number Diff line Loading @@ -66,18 +66,8 @@ spec: - name: http containerPort: 8080 env: {{ toYaml $fileServer.extraEnv | nindent 12 }} readinessProbe: &probe httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: <<: *probe initialDelaySeconds: 300 readinessProbe: {{ toYaml $fileServer.readinessProbe | nindent 12 }} livenessProbe: {{ toYaml $fileServer.livenessProbe | nindent 12 }} {{- with .Values.data.securityContext }} securityContext: {{ toYaml . | nindent 12 }} {{- end }} Loading
deploy/kubernetes/chart/values.yaml +18 −0 Original line number Diff line number Diff line Loading @@ -385,6 +385,24 @@ data: # The tolerations for the file server pod # See https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ tolerations: readinessProbe: httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: httpGet: path: / port: 8080 httpHeaders: - name: Host value: healthz.local initialDelaySeconds: 300 periodSeconds: 10 ### # Index node configuration Loading