Skip to content

Commit eafcf1b

Browse files
Add labels to pgbouncer objects and pods
1 parent 236617a commit eafcf1b

9 files changed

+35
-12
lines changed

chart/templates/pgbouncer/pgbouncer-deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ spec:
6767
tier: airflow
6868
component: pgbouncer
6969
release: {{ .Release.Name }}
70-
{{- with .Values.labels }}
71-
{{- toYaml . | nindent 8 }}
70+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
71+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 8 }}
7272
{{- end }}
7373
annotations:
7474
checksum/pgbouncer-config-secret: {{ include (print $.Template.BasePath "/secrets/pgbouncer-config-secret.yaml") . | sha256sum }}

chart/templates/pgbouncer/pgbouncer-ingress.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ metadata:
3131
release: {{ .Release.Name }}
3232
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
3333
heritage: {{ .Release.Service }}
34-
{{- with .Values.labels }}
35-
{{- toYaml . | nindent 4 }}
34+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
35+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 4 }}
3636
{{- end }}
3737
{{- with .Values.ingress.pgbouncer.annotations }}
3838
annotations: {{- toYaml . | nindent 4 }}

chart/templates/pgbouncer/pgbouncer-networkpolicy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ metadata:
3434
release: {{ .Release.Name }}
3535
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
3636
heritage: {{ .Release.Service }}
37-
{{- with .Values.labels }}
38-
{{- toYaml . | nindent 4 }}
37+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
38+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 4 }}
3939
{{- end }}
4040
spec:
4141
podSelector:

chart/templates/pgbouncer/pgbouncer-poddisruptionbudget.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ metadata:
3131
release: {{ .Release.Name }}
3232
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
3333
heritage: {{ .Release.Service }}
34-
{{- with .Values.labels }}
35-
{{- toYaml . | nindent 4 }}
34+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
35+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 4 }}
3636
{{- end }}
3737
spec:
3838
selector:

chart/templates/pgbouncer/pgbouncer-service.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ metadata:
3131
release: {{ .Release.Name }}
3232
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
3333
heritage: {{ .Release.Service }}
34-
{{- with .Values.labels }}
35-
{{- toYaml . | nindent 4 }}
34+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
35+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 4 }}
3636
{{- end }}
3737
annotations:
3838
prometheus.io/scrape: "true"

chart/templates/pgbouncer/pgbouncer-serviceaccount.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ metadata:
3232
release: {{ .Release.Name }}
3333
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
3434
heritage: {{ .Release.Service }}
35-
{{- with .Values.labels }}
36-
{{- toYaml . | nindent 4 }}
35+
{{- if or (.Values.labels) (.Values.pgbouncer.labels) }}
36+
{{- mustMerge .Values.pgbouncer.labels .Values.labels | toYaml | nindent 4 }}
3737
{{- end }}
3838
{{- with .Values.pgbouncer.serviceAccount.annotations }}
3939
annotations: {{- toYaml . | nindent 4 }}

chart/values.schema.json

+8
Original file line numberDiff line numberDiff line change
@@ -7021,6 +7021,14 @@
70217021
"additionalProperties": false
70227022
}
70237023
},
7024+
"labels": {
7025+
"description": "Labels to add to the pgbouncer objects and pods.",
7026+
"type": "object",
7027+
"default": {},
7028+
"additionalProperties": {
7029+
"type": "string"
7030+
}
7031+
},
70247032
"enabled": {
70257033
"description": "Enable PgBouncer.",
70267034
"type": "boolean",

chart/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -2364,6 +2364,8 @@ pgbouncer:
23642364
# readOnly: true
23652365
extraVolumeMounts: []
23662366

2367+
# Labels specific to pgbouncer objects and pods
2368+
labels: {}
23672369
# Environment variables to add to pgbouncer container
23682370
env: []
23692371

helm_tests/other/test_pgbouncer.py

+13
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,19 @@ def test_should_add_component_specific_annotations(self):
400400
assert "annotations" in jmespath.search("metadata", docs[0])
401401
assert jmespath.search("metadata.annotations", docs[0])["test_annotation"] == "test_annotation_value"
402402

403+
def test_should_add_component_specific_labels(self):
404+
docs = render_chart(
405+
values={
406+
"pgbouncer": {
407+
"enabled": True,
408+
"labels": {"test_label": "test_label_value"},
409+
},
410+
},
411+
show_only=["templates/pgbouncer/pgbouncer-deployment.yaml"],
412+
)
413+
assert "labels" in jmespath.search("metadata", docs[0])
414+
assert jmespath.search("metadata.labels", docs[0])["test_label"] == "test_label_value"
415+
403416

404417
class TestPgbouncerConfig:
405418
"""Tests PgBouncer config."""

0 commit comments

Comments
 (0)