Skip to content
2 changes: 1 addition & 1 deletion charts/das/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ spec:
{{- range $key, $value := .Values.customArgs }}
- --{{ $key }}={{ $value | quote }}
{{- end }}
{{- end }}
ports:
{{- if and .Values.configmap.data.http .Values.configmap.data.http.port}}
- name: http-rpc
Expand Down Expand Up @@ -185,7 +186,6 @@ spec:
{{- include "startupProbe" . | nindent 18 }}
{{- end }}
{{- end }}
{{- end }}
env:
{{- include "das.env" . | nindent 10 }}
{{- with .Values.extraEnv }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nitro/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ spec:
{{- if .Values.customArgs }}
{{- include "nitro.customArgs" . | nindent 12 }}
{{- end }}
{{- end }}
ports:
{{- if and .Values.configmap.data.http .Values.configmap.data.http.port}}
- name: http-rpc
Expand Down Expand Up @@ -134,7 +135,6 @@ spec:
failureThreshold: {{ .Values.startupProbe.failureThreshold }}
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
{{- end }}
{{- end }}
env:
- name: POD_NAME
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion charts/relay/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ spec:
containerPort: {{ index .Values "configmap" "data" "pprof-cfg" "port" }}
protocol: TCP
{{- end }}
{{- end }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
{{- if and .Values.livenessProbe.exec (kindIs "string" .Values.livenessProbe.exec.command) }}
Expand All @@ -97,7 +98,6 @@ spec:
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
lifecycle:
{{- include "relay.lifecycle" . | nindent 12 }}
{{- with .Values.lifecycle }}
Expand Down