Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/helm/reflector/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ kind: Deployment
metadata:
name: {{ include "reflector.fullname" . }}
namespace: {{ include "reflector.namespace" . }}
{{- with .Values.deploymentAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{- include "reflector.labels" . | nindent 4 }}

Expand Down
2 changes: 2 additions & 0 deletions src/helm/reflector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template
name: ""

# additional annotations to set on the deployment
deploymentAnnotations: {}
# additional annotations to set on the pod
podAnnotations: {}
# additional labels to set on the pod
Expand Down