File tree 4 files changed +32
-0
lines changed
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 13
13
metadata :
14
14
labels :
15
15
{{- include "infisical.backend.matchLabels" . | nindent 8 }}
16
+ {{- with .Values.backend.podAnnotations }}
17
+ annotations :
18
+ {{- toYaml . | nindent 8 }}
19
+ {{- end }}
16
20
spec :
17
21
containers :
18
22
- name : {{ template "infisical.name" . }}-{{ .Values.backend.name }}
@@ -41,6 +45,10 @@ metadata:
41
45
name : {{ include "infisical.backend.fullname" . }}
42
46
labels :
43
47
{{- include "infisical.backend.labels" . | nindent 4 }}
48
+ {{- with .Values.backend.service.annotations }}
49
+ annotations :
50
+ {{- toYaml . | nindent 4 }}
51
+ {{- end }}
44
52
spec :
45
53
selector :
46
54
{{- include "infisical.backend.matchLabels" . | nindent 8 }}
Original file line number Diff line number Diff line change 13
13
metadata :
14
14
labels :
15
15
{{- include "infisical.frontend.matchLabels" . | nindent 8 }}
16
+ {{- with .Values.frontend.podAnnotations }}
17
+ annotations :
18
+ {{- toYaml . | nindent 8 }}
19
+ {{- end }}
16
20
spec :
17
21
containers :
18
22
- name : {{ template "infisical.name" . }}-{{ .Values.frontend.name }}
@@ -42,6 +46,10 @@ metadata:
42
46
name : {{ include "infisical.frontend.fullname" . }}
43
47
labels :
44
48
{{- include "infisical.frontend.labels" . | nindent 4 }}
49
+ {{- with .Values.frontend.service.annotations }}
50
+ annotations :
51
+ {{- toYaml . | nindent 4 }}
52
+ {{- end }}
45
53
spec :
46
54
type : {{ .Values.frontend.service.type }}
47
55
selector :
Original file line number Diff line number Diff line change 13
13
metadata :
14
14
labels :
15
15
{{- include "infisical.mongodb.matchLabels" . | nindent 8 }}
16
+ {{- with .Values.mongodb.podAnnotations }}
17
+ annotations :
18
+ {{- toYaml . | nindent 8 }}
19
+ {{- end }}
16
20
spec :
17
21
containers :
18
22
- name : {{ template "infisical.name" . }}-{{ .Values.mongodb.name }}
@@ -32,6 +36,10 @@ metadata:
32
36
name : {{ include "infisical.mongodb.fullname" . }}
33
37
labels :
34
38
{{- include "infisical.mongodb.labels" . | nindent 4 }}
39
+ {{- with .Values.mongodb.service.annotations }}
40
+ annotations :
41
+ {{- toYaml . | nindent 4 }}
42
+ {{- end }}
35
43
spec :
36
44
selector :
37
45
{{- include "infisical.mongodb.matchLabels" . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ nameOverride: ""
7
7
8
8
frontend :
9
9
name : frontend
10
+ podAnnotations : {}
10
11
replicaCount : 1
11
12
image :
12
13
repository : infisical/frontend
@@ -18,22 +19,29 @@ frontend:
18
19
type : ClusterIP
19
20
# define the nodePort if service type is NodePort
20
21
# nodePort:
22
+ annotations : {}
21
23
22
24
backend :
23
25
name : backend
26
+ podAnnotations : {}
24
27
replicaCount : 1
25
28
image :
26
29
repository : infisical/backend
27
30
pullPolicy : IfNotPresent
28
31
tag : " latest"
29
32
# kubeSecretRef: some-kube-secret-name
33
+ service :
34
+ annotations : {}
30
35
31
36
mongodb :
32
37
name : mongodb
38
+ podAnnotations : {}
33
39
image :
34
40
repository : mongo
35
41
pullPolicy : IfNotPresent
36
42
tag : " latest"
43
+ service :
44
+ annotations : {}
37
45
38
46
ingress :
39
47
enabled : true
You can’t perform that action at this time.
0 commit comments