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:
- prometheus
- prometheus-exporter
- postgres-postgres-exporter
- postgres-exporter
- prometheus exporter
- postgres
sources:
- https://github.com/prometheus-community/postgres_exporter

View File

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

View File

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