File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ their default values.
46
46
| ` serviceAccount.create ` | Create ServiceAccount | ` false ` |
47
47
| ` serviceAccount.name ` | ServiceAccount name | ` nil ` |
48
48
| ` serviceAccount.annotations ` | Annotations to add to the ServiceAccount | ` {} ` |
49
+ | ` deployment.annotations ` | Annotations to add to the Deployment | ` {} ` |
49
50
| ` service.port ` | TCP port on which the service is exposed | ` 5000 ` |
50
51
| ` service.type ` | service type | ` ClusterIP ` |
51
52
| ` service.clusterIP ` | if ` service.type ` is ` ClusterIP ` and this is non-empty, sets the cluster IP of the service | ` nil ` |
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ metadata:
8
8
chart : {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
9
9
release : {{ .Release.Name }}
10
10
heritage : {{ .Release.Service }}
11
+ {{- if .Values.deployment.annotations }}
12
+ annotations :
13
+ {{ toYaml .Values.deployment.annotations | indent 4 }}
14
+ {{- end }}
11
15
spec :
12
16
selector :
13
17
matchLabels :
Original file line number Diff line number Diff line change 23
23
pullPolicy : IfNotPresent
24
24
# imagePullSecrets:
25
25
# - name: docker
26
+ deployment : {}
27
+ # annotations:
26
28
service :
27
29
name : registry
28
30
type : ClusterIP
You can’t perform that action at this time.
0 commit comments