Loading deploy/kubernetes/chart/templates/search/publish-deployment.yaml +16 −0 Original line number Diff line number Diff line Loading @@ -27,6 +27,22 @@ spec: - name: http containerPort: 8080 env: {{ toYaml $search.extraEnv | nindent 12 }} readinessProbe: &probe httpGet: path: /esg-search/search port: 8080 httpHeaders: - name: Host value: "{{ .Values.hostname }}" - name: X-Forwarded-Host value: "{{ .Values.hostname }}" - name: X-Forwarded-Proto value: https initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: <<: *probe initialDelaySeconds: 120 {{- with $search.securityContext }} securityContext: {{ toYaml . | nindent 12 }} {{- end }} Loading Loading
deploy/kubernetes/chart/templates/search/publish-deployment.yaml +16 −0 Original line number Diff line number Diff line Loading @@ -27,6 +27,22 @@ spec: - name: http containerPort: 8080 env: {{ toYaml $search.extraEnv | nindent 12 }} readinessProbe: &probe httpGet: path: /esg-search/search port: 8080 httpHeaders: - name: Host value: "{{ .Values.hostname }}" - name: X-Forwarded-Host value: "{{ .Values.hostname }}" - name: X-Forwarded-Proto value: https initialDelaySeconds: 10 periodSeconds: 10 livenessProbe: <<: *probe initialDelaySeconds: 120 {{- with $search.securityContext }} securityContext: {{ toYaml . | nindent 12 }} {{- end }} Loading