Skip to content

Helm chart: incorrect indentations #169

@kashtan404

Description

@kashtan404

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions