Skip to content

Commit 17010e1

Browse files
authored
Release artifacts for release v1.0.15 (#98)
Fixes [#2582](aws-controllers-k8s/community#2582) By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 2ddc6cf commit 17010e1

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kind: Kustomization
66
images:
77
- name: controller
88
newName: public.ecr.aws/aws-controllers-k8s/opensearchservice-controller
9-
newTag: 1.0.14
9+
newTag: 1.0.15

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: 1.0.14
5-
appVersion: 1.0.14
4+
version: 1.0.15
5+
appVersion: 1.0.15
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/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ .Chart.Name }} has been installed.
2-
This chart deploys "public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:1.0.14".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:1.0.15".
33

44
Check its status by running:
55
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"

helm/templates/caches-role-binding.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: rbac.authorization.k8s.io/v1
22
kind: ClusterRoleBinding
33
metadata:
4-
name: {{ include "ack-opensearchservice-controller.app.fullname" . }}-namespace-caches
4+
name: {{ include "ack-opensearchservice-controller.app.fullname" . }}-namespaces-cache
55
labels:
66
app.kubernetes.io/name: {{ include "ack-opensearchservice-controller.app.name" . }}
77
app.kubernetes.io/instance: {{ .Release.Name }}
@@ -12,7 +12,7 @@ metadata:
1212
roleRef:
1313
kind: ClusterRole
1414
apiGroup: rbac.authorization.k8s.io
15-
name: {{ include "ack-opensearchservice-controller.app.fullname" . }}-namespace-caches
15+
name: {{ include "ack-opensearchservice-controller.app.fullname" . }}-namespaces-cache
1616
subjects:
1717
- kind: ServiceAccount
1818
name: {{ include "ack-opensearchservice-controller.service-account.name" . }}

helm/values.yaml

Lines changed: 1 addition & 1 deletion
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: 1.0.14
7+
tag: 1.0.15
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

test/e2e/tests/test_domain.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ def test_create_delete_es_7_9(self, es_7_9_domain):
240240
assert cr is not None
241241
assert 'status' in cr
242242
domain.assert_endpoint(cr)
243+
assert k8s.wait_on_condition(ref, "ACK.ResourceSynced", "True", wait_periods=30)
243244

244245
# now we will modify the engine version to test upgrades
245246
# similar to creating a new domain, this takes a long time, often 20+ minutes

0 commit comments

Comments
 (0)