Skip to content

Commit 8769f48

Browse files
authored
Merge pull request #9 from jaypipes/release-v0.0.3
release artifacts for v0.0.3
2 parents 0d2f2a5 + 83c7c5f commit 8769f48

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: opensearchservice-chart
33
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
66
home: https://github.com/aws-controllers-k8s/opensearchservice-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/templates/deployment.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,12 @@ spec:
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 -}}

helm/values.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/aws-controllers-k8s/opensearchservice-controller
7-
tag: v0.0.2
7+
tag: v0.0.3
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+
2132
metrics:
2233
service:
2334
# Set to true to automatically create a Kubernetes Service resource for the

0 commit comments

Comments
 (0)