From 225911cb99bfdad61125ca1db807b17febf56157 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 09:04:48 -0500 Subject: [PATCH] Change operator version to 2.0.3 (#893) Automated changes by pre-release.yml GitHub action Signed-off-by: GitHub Co-authored-by: cchen-vertica --- Makefile | 2 +- helm-charts/verticadb-operator/Chart.yaml | 2 +- helm-charts/verticadb-operator/README.md | 2 +- helm-charts/verticadb-operator/values.yaml | 2 +- pkg/meta/labels.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f09ac184e..b911f60a0 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 2.0.2 +VERSION ?= 2.0.3 export VERSION # VLOGGER_VERSION defines the version to use for the Vertica logger image diff --git a/helm-charts/verticadb-operator/Chart.yaml b/helm-charts/verticadb-operator/Chart.yaml index fe847ec80..168d51f92 100644 --- a/helm-charts/verticadb-operator/Chart.yaml +++ b/helm-charts/verticadb-operator/Chart.yaml @@ -15,4 +15,4 @@ name: verticadb-operator description: An operator that can deploy and manage Vertica clusters type: application # Versions follow Semantic Versioning (https://semver.org/) -version: 2.0.2 +version: 2.0.3 diff --git a/helm-charts/verticadb-operator/README.md b/helm-charts/verticadb-operator/README.md index 84779f174..977453122 100644 --- a/helm-charts/verticadb-operator/README.md +++ b/helm-charts/verticadb-operator/README.md @@ -3,7 +3,7 @@ This helm chart will install the operator and an admission controller webhook. | Parameter Name | Description | Default Value | |----------------|-------------|---------------| | affinity | The [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) parameter allows you to constrain the operator pod only to specific nodes. If this parameter is not set, then no affinity setting is used with the operator pod. | Not set | -| image.name | The name of image that runs the operator. | vertica/verticadb-operator:2.0.2 | +| image.name | The name of image that runs the operator. | vertica/verticadb-operator:2.0.3 | | image.repo | Repo server hosting image.name | docker.io | | image.pullPolicy | The pull policy for the image that runs the operator | IfNotPresent | | imagePullSecrets | List of Secret names containing login credentials for above repos | null (pull images anonymously) | diff --git a/helm-charts/verticadb-operator/values.yaml b/helm-charts/verticadb-operator/values.yaml index cc88cf62a..206937650 100644 --- a/helm-charts/verticadb-operator/values.yaml +++ b/helm-charts/verticadb-operator/values.yaml @@ -26,7 +26,7 @@ image: repo: docker.io - name: vertica/verticadb-operator:2.0.2 + name: vertica/verticadb-operator:2.0.3 pullPolicy: IfNotPresent rbac_proxy_image: diff --git a/pkg/meta/labels.go b/pkg/meta/labels.go index 537a3d261..c0d9ce0ce 100644 --- a/pkg/meta/labels.go +++ b/pkg/meta/labels.go @@ -44,7 +44,7 @@ const ( NameLabel = "app.kubernetes.io/name" OperatorName = "verticadb-operator" // The name of the operator - CurOperatorVersion = "2.0.2" // The version number of the operator + CurOperatorVersion = "2.0.3" // The version number of the operator // If any of the operator versions are used in the code, add a const here. // But it isn't necessary to create a const for each version. OperatorVersion100 = "1.0.0"