Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Helm chart: incorrect indentations #169

Open
kashtan404 opened this issue Jul 18, 2024 · 0 comments
Open

Helm chart: incorrect indentations #169

kashtan404 opened this issue Jul 18, 2024 · 0 comments

Comments

@kashtan404
Copy link

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 }}


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 }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant