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 cc68c9b commit cab3aedCopy full SHA for cab3aed
charts/connector/templates/deployment.yaml
@@ -55,6 +55,14 @@ spec:
55
{{- end }}
56
resources:
57
{{- toYaml .Values.resources | nindent 12 }}
58
+ {{- with .Values.volumeMounts }}
59
+ volumeMounts:
60
+ {{- toYaml . | nindent 12 }}
61
+ {{- end }}
62
+ {{- with .Values.volumes }}
63
+ volumes:
64
+ {{- toYaml . | nindent 8 }}
65
66
{{- if .Values.pullWithCredentials }}
67
imagePullSecrets:
68
- name: formal-ecr-secret
charts/connector/values.yaml
@@ -58,6 +58,7 @@ securityContext: {}
podSecurityContext: {}
podAnnotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
-
+volumes: []
+volumeMounts: []
serviceAccount:
name: ""
0 commit comments