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 1
1
apiVersion : v1
2
2
name : opensearchservice-chart
3
3
description : A Helm chart for the ACK service controller for Amazon OpenSearch Service (OpenSearch)
4
- version : v0.0.2
5
- appVersion : v0.0.2
4
+ version : v0.0.3
5
+ appVersion : v0.0.3
6
6
home : https://github.com/aws-controllers-k8s/opensearchservice-controller
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
8
8
sources :
Original file line number Diff line number Diff line change 75
75
value : {{ join "," .Values.resourceTags | quote }}
76
76
terminationGracePeriodSeconds : 10
77
77
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 4
4
5
5
image :
6
6
repository : public.ecr.aws/aws-controllers-k8s/opensearchservice-controller
7
- tag : v0.0.2
7
+ tag : v0.0.3
8
8
pullPolicy : IfNotPresent
9
9
pullSecrets : []
10
10
@@ -15,9 +15,20 @@ deployment:
15
15
annotations : {}
16
16
labels : {}
17
17
containerPort : 8080
18
+ # Which nodeSelector to set?
19
+ # See: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector
18
20
nodeSelector :
19
21
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
+
21
32
metrics :
22
33
service :
23
34
# Set to true to automatically create a Kubernetes Service resource for the
You can’t perform that action at this time.
0 commit comments