Skip to content

Commit 229f93c

Browse files
Change operator version to 24.4.0-0 (#950)
Automated changes by pre-release.yml GitHub action --------- Signed-off-by: GitHub <noreply@github.com> Co-authored-by: cchen-vertica <cchen-vertica@users.noreply.github.com> Co-authored-by: cchen-vertica <cchen8@opentext.com>
1 parent ee0e01f commit 229f93c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 2.2.0
6+
VERSION ?= 24.4.0-0
77
export VERSION
88

99
# VLOGGER_VERSION defines the version to use for the Vertica logger image

helm-charts/verticadb-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ name: verticadb-operator
1515
description: An operator that can deploy and manage Vertica clusters
1616
type: application
1717
# Versions follow Semantic Versioning (https://semver.org/)
18-
version: 2.2.0
18+
version: 24.4.0-0

helm-charts/verticadb-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This helm chart will install the operator and an admission controller webhook.
55
| 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 |
66
| 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 |
77
| controllers.scope | Defines the scope of the operator. You can define one of two values: cluster or namespace.<br><br>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.<br><br>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 |
8-
| image.name | The name of image that runs the operator. | opentext/verticadb-operator:2.2.0 |
8+
| image.name | The name of image that runs the operator. | opentext/verticadb-operator:24.4.0-0 |
99
| image.repo | Repo server hosting image.name | docker.io |
1010
| image.pullPolicy | The pull policy for the image that runs the operator | IfNotPresent |
1111
| imagePullSecrets | List of Secret names containing login credentials for above repos | null (pull images anonymously) |

helm-charts/verticadb-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
image:
2828
repo: docker.io
29-
name: opentext/verticadb-operator:2.2.0
29+
name: opentext/verticadb-operator:24.4.0-0
3030
pullPolicy: IfNotPresent
3131

3232
rbac_proxy_image:

pkg/meta/labels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const (
4545
// the pod spec template. Rather it is set in the pod by a reconciler after
4646
// the pod was created.
4747
OperatorVersionLabel = "app.kubernetes.io/version"
48-
CurOperatorVersion = "2.2.0" // The version number of the operator
48+
CurOperatorVersion = "24.4.0-0" // The version number of the operator
4949
// If any of the operator versions are used in the code, add a const here.
5050
// But it isn't necessary to create a const for each version.
5151
OperatorVersion100 = "1.0.0"

0 commit comments

Comments
 (0)