-
Notifications
You must be signed in to change notification settings - Fork 107
Open
Description
There are several incorrect indentations in the helm/cert-exporter/templates/cert-manager/cert-manager.yaml which makes incorrect chart templating.
| {{- toYaml .Values.certManager.volumeMounts | nindent 12 }} |
actual:
resources:
{{- toYaml .Values.certManager.resources | nindent 12 }}
volumeMounts:
{{- toYaml .Values.certManager.volumeMounts | nindent 12 }}
should be:
resources:
{{- toYaml .Values.certManager.resources | nindent 12 }}
volumeMounts:
{{- toYaml .Values.certManager.volumeMounts | nindent 12 }}
| failureThreshold: 1 |
actual:
readinessProbe:
httpGet:
path: /metrics
port: {{ .Values.certManager.containerPort }}
failureThreshold: 1
periodSeconds: 10
should be:
readinessProbe:
httpGet:
path: /metrics
port: {{ .Values.certManager.containerPort }}
failureThreshold: 1
periodSeconds: 10
| {{- toYaml .Values.certManager.volumes | nindent 8 }} |
actual:
volumes:
{{- toYaml .Values.certManager.volumes | nindent 8 }}
should be:
volumes:
{{- toYaml .Values.certManager.volumes | nindent 8 }}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels