From e07bb9e3b1d5019c43952af63ca71c2360bed750 Mon Sep 17 00:00:00 2001 From: Neha Bhat <84361901+ndbhat@users.noreply.github.com> Date: Fri, 26 Apr 2024 16:12:09 -0400 Subject: [PATCH] Release artifacts for release v0.0.12 (#50) Description of changes: 1. Release artifacts for release v0.0.12 2. Increase wait time after creating CAs in e2e tests By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. --- config/controller/kustomization.yaml | 2 +- helm/Chart.yaml | 4 ++-- helm/templates/NOTES.txt | 2 +- helm/values.yaml | 2 +- test/e2e/tests/test_ca.py | 2 +- test/e2e/tests/test_ca_activation.py | 2 +- test/e2e/tests/test_certificate.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index e84ae33..7b83faf 100644 --- a/config/controller/kustomization.yaml +++ b/config/controller/kustomization.yaml @@ -6,4 +6,4 @@ kind: Kustomization images: - name: controller newName: public.ecr.aws/aws-controllers-k8s/acmpca-controller - newTag: 0.0.11 + newTag: 0.0.12 diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 64b147e..3b58511 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: acmpca-chart description: A Helm chart for the ACK service controller for AWS Private Certificate Authority (PCA) -version: 0.0.11 -appVersion: 0.0.11 +version: 0.0.12 +appVersion: 0.0.12 home: https://github.com/aws-controllers-k8s/acmpca-controller icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png sources: diff --git a/helm/templates/NOTES.txt b/helm/templates/NOTES.txt index bbffce6..ec3e544 100644 --- a/helm/templates/NOTES.txt +++ b/helm/templates/NOTES.txt @@ -1,5 +1,5 @@ {{ .Chart.Name }} has been installed. -This chart deploys "public.ecr.aws/aws-controllers-k8s/acmpca-controller:0.0.11". +This chart deploys "public.ecr.aws/aws-controllers-k8s/acmpca-controller:0.0.12". Check its status by running: kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}" diff --git a/helm/values.yaml b/helm/values.yaml index 2877fa2..0e35612 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -4,7 +4,7 @@ image: repository: public.ecr.aws/aws-controllers-k8s/acmpca-controller - tag: 0.0.11 + tag: 0.0.12 pullPolicy: IfNotPresent pullSecrets: [] diff --git a/test/e2e/tests/test_ca.py b/test/e2e/tests/test_ca.py index 469796f..89412b3 100644 --- a/test/e2e/tests/test_ca.py +++ b/test/e2e/tests/test_ca.py @@ -32,7 +32,7 @@ RESOURCE_PLURAL = "certificateauthorities" -CREATE_WAIT_AFTER_SECONDS = 30 +CREATE_WAIT_AFTER_SECONDS = 60 UPDATE_WAIT_AFTER_SECONDS = 10 DELETE_WAIT_AFTER_SECONDS = 10 diff --git a/test/e2e/tests/test_ca_activation.py b/test/e2e/tests/test_ca_activation.py index 5e78bec..d35eccd 100644 --- a/test/e2e/tests/test_ca_activation.py +++ b/test/e2e/tests/test_ca_activation.py @@ -30,7 +30,7 @@ RESOURCE_PLURAL = "certificateauthorityactivations" -CREATE_CA_WAIT_AFTER_SECONDS = 30 +CREATE_CA_WAIT_AFTER_SECONDS = 60 CREATE_WAIT_AFTER_SECONDS = 10 UPDATE_WAIT_AFTER_SECONDS = 10 DELETE_WAIT_AFTER_SECONDS = 10 diff --git a/test/e2e/tests/test_certificate.py b/test/e2e/tests/test_certificate.py index fa1b3ff..64e27ad 100644 --- a/test/e2e/tests/test_certificate.py +++ b/test/e2e/tests/test_certificate.py @@ -30,7 +30,7 @@ RESOURCE_PLURAL = "certificates" -CREATE_CA_WAIT_AFTER_SECONDS = 30 +CREATE_CA_WAIT_AFTER_SECONDS = 60 CREATE_WAIT_AFTER_SECONDS = 10 UPDATE_WAIT_AFTER_SECONDS = 10 DELETE_WAIT_AFTER_SECONDS = 10