Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jonforero authored Jul 9, 2024
1 parent af19d74 commit d94650b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions zp-fco-id-audit/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ spec:
containerPort: {{ .Values.service.port }}
protocol: TCP
{{- if .Values.monitorConfig.enabled }}
livenessProbe: {{ .Values.monitorConfig.livenessProbe | toYaml | nindent 12 }}
readinessProbe: {{ .Values.monitorConfig.readinessProbe | toYaml | nindent 12 }}
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.readinessProbe | nindent 12 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
Expand All @@ -66,4 +68,4 @@ spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}

0 comments on commit d94650b

Please sign in to comment.