Compare commits

..

No commits in common. "0.1.3" and "0.1.2" have entirely different histories.
0.1.3 ... 0.1.2

3 changed files with 18 additions and 18 deletions

View File

@ -10,9 +10,8 @@ appVersion: "0.15.0"
keywords: keywords:
- prometheus - prometheus
- prometheus-exporter - prometheus exporter
- postgres-postgres-exporter - postgres
- postgres-exporter
sources: sources:
- https://github.com/prometheus-community/postgres_exporter - https://github.com/prometheus-community/postgres_exporter

View File

@ -13,13 +13,14 @@ metadata:
{{- end }} {{- end }}
name: {{ include "prometheus-postgres-exporter.fullname" . }} name: {{ include "prometheus-postgres-exporter.fullname" . }}
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
automountServiceAccountToken: {{ .Values.serviceAccount.new.automountServiceAccountToken }} spec:
{{- with .Values.serviceAccount.new.imagePullSecrets }} automountServiceAccountToken: {{ .Values.serviceAccount.new.automountServiceAccountToken }}
imagePullSecrets: {{- with .Values.serviceAccount.new.imagePullSecrets }}
{{- toYaml . | nindent 4 }} imagePullSecrets:
{{- end }} {{- toYaml . | nindent 4 }}
{{- with .Values.serviceAccount.new.secrets }} {{- end }}
secrets: {{- with .Values.serviceAccount.new.secrets }}
{{- toYaml . | nindent 4 }} secrets:
{{- end }} {{- toYaml . | nindent 4 }}
{{- end }}
{{- end }} {{- end }}

View File

@ -29,12 +29,12 @@ tests:
- notExists: - notExists:
path: metadata.labels path: metadata.labels
- equal: - equal:
path: automountServiceAccountToken path: spec.automountServiceAccountToken
value: true value: true
- notExists: - notExists:
path: imagePullSecrets path: spec.imagePullSecrets
- notExists: - notExists:
path: secrets path: spec.secrets
- it: Rendering serviceAccount with custom values. - it: Rendering serviceAccount with custom values.
@ -65,14 +65,14 @@ tests:
path: metadata.name path: metadata.name
value: prometheus-postgres-exporter-unittest value: prometheus-postgres-exporter-unittest
- equal: - equal:
path: automountServiceAccountToken path: spec.automountServiceAccountToken
value: false value: false
- equal: - equal:
path: imagePullSecrets path: spec.imagePullSecrets
value: value:
- name: "my-pull-secret" - name: "my-pull-secret"
- equal: - equal:
path: secrets path: spec.secrets
value: value:
- name: "my-secret" - name: "my-secret"
namespace: "my-namespace" namespace: "my-namespace"