Skip to content

Commit

Permalink
feat: allow specifying additional pod labels (#150)
Browse files Browse the repository at this point in the history
Signed-off-by: Tristan Colgate-McFarlane <[email protected]>
  • Loading branch information
tcolgate authored Jun 6, 2024
1 parent 97ad4cb commit f9825a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/flipt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flipt
home: https://flipt.io
description: Flipt is an open-source, self-hosted feature flag solution.
type: application
version: 0.61.0
version: 0.62.0
appVersion: v1.43.0
maintainers:
- name: Flipt
Expand Down
3 changes: 3 additions & 0 deletions charts/flipt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ spec:
annotations: {{- include "common.classes.podAnnotations" . | nindent 8 }}
labels:
{{- include "flipt.selectorLabels" . | nindent 8 }}
{{- if .Values.podLabels }}
{{- toYaml .Values.podLabels | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
Expand Down
1 change: 1 addition & 0 deletions charts/flipt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ test:
# tag: '1.36.1'

podAnnotations: {}
podLabels: {}

podSecurityContext:
runAsUser: 100
Expand Down

0 comments on commit f9825a1

Please sign in to comment.