We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d8dbd commit 0cf363fCopy full SHA for 0cf363f
charts/artifacts/templates/deployment.yaml
@@ -19,6 +19,10 @@ spec:
19
app: {{ template "fullname" $ }}
20
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
21
release: "{{ .Release.Name }}"
22
+ {{- with .Values.podAnnotations }}
23
+ annotations:
24
+ {{- toYaml . | nindent 8 }}
25
+ {{- end }}
26
spec:
27
terminationGracePeriodSeconds: {{ .Values.deployment.terminationGracePeriodSeconds }}
28
{{- if .Values.image.pullSecrets }}
charts/artifacts/values.yaml
@@ -7,6 +7,8 @@ nameOverride: "artifacts"
7
## fullnameOverride allows to change the full name of resources
8
fullnameOverride:
9
10
+podAnnotations: {}
11
+
12
githubApiBasicAuth:
13
## githubApiUrl contains the api url to check the auth connection
14
##
0 commit comments