diff --git a/Makefile b/Makefile index 1894face8..2281a9421 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.1.0 +VERSION ?= 2.1.1 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 f45cb661f..985805359 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.1.0 +version: 2.1.1 diff --git a/helm-charts/verticadb-operator/README.md b/helm-charts/verticadb-operator/README.md index cc7b892d4..3f6097d46 100644 --- a/helm-charts/verticadb-operator/README.md +++ b/helm-charts/verticadb-operator/README.md @@ -5,7 +5,7 @@ This helm chart will install the operator and an admission controller webhook. | 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 | | controllers.enable | This controls if controllers are enabled when running the operator. The controllers are the part of the operator that watches and acts on custom resources. This option is useful if you want to deploy the operator just as a webhook. This comes in handy when deploying the operator as the namespace scope | true | | controllers.scope | Defines the scope of the operator. You can define one of two values: cluster or namespace.

When set to cluster, the operator is cluster scoped. This means it will watch for changes to any custom resource across all namespaces. This is the default deployment.

When set to namespace, the operator is cluster scope. The operator will only set up watches for the namespace it is deployed in. You can deploy the operator in multiple namespaces this way. However, the webhook can only be run once in the cluster. You can control running of the webhook with the webhook.enable option. | cluster | -| image.name | The name of image that runs the operator. | opentext/verticadb-operator:2.1.0 | +| image.name | The name of image that runs the operator. | opentext/verticadb-operator:2.1.1 | | 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 ca168d3b8..2c7ccc214 100644 --- a/helm-charts/verticadb-operator/values.yaml +++ b/helm-charts/verticadb-operator/values.yaml @@ -26,7 +26,7 @@ image: repo: docker.io - name: opentext/verticadb-operator:2.1.0 + name: opentext/verticadb-operator:2.1.1 pullPolicy: IfNotPresent rbac_proxy_image: diff --git a/pkg/meta/labels.go b/pkg/meta/labels.go index 86d1acbbf..0d98d4149 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.1.0" // The version number of the operator + CurOperatorVersion = "2.1.1" // 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"