File tree Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 83
83
subPath : config.yaml
84
84
- name : data
85
85
mountPath : /data
86
+ {{- with .Values.fire.extraVolumeMounts }}
87
+ {{- toYaml . | nindent 12 }}
88
+ {{- end }}
86
89
resources :
87
90
{{- toYaml .Values.fire.resources | nindent 12 }}
88
91
{{- with .Values.fire.nodeSelector }}
98
101
{{- toYaml . | nindent 8 }}
99
102
{{- end }}
100
103
volumes :
104
+ {{- with .Values.fire.extraVolumes }}
105
+ {{- toYaml . | nindent 8 }}
106
+ {{- end }}
101
107
- name : config
102
108
configMap :
103
109
name : {{ include "fire.fullname" . }}-config
Original file line number Diff line number Diff line change 2
2
# This is a YAML-formatted file.
3
3
# Declare variables to be passed into your templates.
4
4
5
-
6
5
fire :
7
6
replicaCount : 1
8
7
24
23
nameOverride : " "
25
24
fullnameOverride : " "
26
25
27
-
28
26
serviceAccount :
29
27
# Specifies whether a service account should be created
30
28
create : true
39
37
podSecurityContext :
40
38
fsGroup : 10001
41
39
42
- securityContext : {}
40
+ securityContext :
41
+ {}
43
42
# capabilities:
44
43
# drop:
45
44
# - ALL
56
55
port : 7946
57
56
port_name : memberlist
58
57
59
- resources : {}
58
+ resources :
59
+ {}
60
60
# We usually recommend not to specify default resources and to leave this as a conscious
61
61
# choice for the user. This also increases chances charts run on environments with little
62
62
# resources, such as Minikube. If you do want to specify resources, uncomment the following
77
77
persistence :
78
78
enabled : false
79
79
accessModes :
80
- - ReadWriteOnce
80
+ - ReadWriteOnce
81
81
size : 10Gi
82
82
annotations : {}
83
83
# selector:
86
86
# subPath: ""
87
87
# existingClaim:
88
88
89
+ extraVolumes :
90
+ []
91
+ # - name: backup-volume
92
+ # emptydir: {}
93
+
94
+ extraVolumeMounts :
95
+ []
96
+ # - name: testing
97
+ # mountPath: /var/lib/testing
98
+ # readOnly: false
99
+ # - name: test-volume
100
+ # mountPath: /var/tmp/test-volume
101
+ # existingClaim: test-volume
102
+ # readOnly: false
103
+
89
104
tolerations : []
90
105
91
106
affinity : {}
You can’t perform that action at this time.
0 commit comments