File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22name : elasticache-chart
33description : A Helm chart for the ACK service controller for Amazon ElastiCache (ElastiCache)
4- version : v0.0.7
5- appVersion : v0.0.7
4+ version : v0.0.8
5+ appVersion : v0.0.8
66home : https://github.com/aws-controllers-k8s/elasticache-controller
77icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88sources :
Original file line number Diff line number Diff line change 7575 value : {{ join "," .Values.resourceTags | quote }}
7676 terminationGracePeriodSeconds : 10
7777 nodeSelector : {{ toYaml .Values.deployment.nodeSelector | nindent 8 }}
78+ {{ if .Values.deployment.tolerations -}}
79+ tolerations : {{ toYaml .Values.deployment.tolerations | nindent 8 }}
80+ {{ end -}}
81+ {{ if .Values.deployment.affinity -}}
82+ affinity : {{ toYaml .Values.deployment.affinity | nindent 8 }}
83+ {{ end -}}
84+ {{ if .Values.deployment.priorityClassName -}}
85+ priorityClassName : {{ .Values.deployment.priorityClassName -}}
86+ {{ end -}}
Original file line number Diff line number Diff line change 44
55image :
66 repository : public.ecr.aws/aws-controllers-k8s/elasticache-controller
7- tag : v0.0.7
7+ tag : v0.0.8
88 pullPolicy : IfNotPresent
99 pullSecrets : []
1010
@@ -15,9 +15,20 @@ deployment:
1515 annotations : {}
1616 labels : {}
1717 containerPort : 8080
18+ # Which nodeSelector to set?
19+ # See: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector
1820 nodeSelector :
1921 kubernetes.io/os : linux
20-
22+ # Which tolerations to set?
23+ # See: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/
24+ tolerations : {}
25+ # What affinity to set?
26+ # See: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
27+ affinity : {}
28+ # Which priorityClassName to set?
29+ # See: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#pod-priority
30+ priorityClassName :
31+
2132metrics :
2233 service :
2334 # Set to true to automatically create a Kubernetes Service resource for the
You can’t perform that action at this time.
0 commit comments