Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change operator version to 25.1.0-0 #1010

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?= 24.4.0-0
VERSION ?= 25.1.0-0
export VERSION

# VLOGGER_VERSION defines the version to use for the Vertica logger image
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/verticadb-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 24.4.0-0
version: 25.1.0-0
2 changes: 1 addition & 1 deletion helm-charts/verticadb-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This helm chart will install the operator and an admission controller webhook.
| 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 |
| controllers.burstSize | This controls the burst size for even recording in the operator. Increasing this allows the controllers to record more events in a short period. | 100 |
| controllers.vdbMaxBackoffDuration | This controls the maximum backoff requeue duration (in milliseconds) for the vdb controller. Increase this value to reduce the requeue rate if you have multiple databases running and want a lower rate limit. | 1000 |
| image.name | The name of image that runs the operator. | opentext/verticadb-operator:24.4.0-0 |
| image.name | The name of image that runs the operator. | opentext/verticadb-operator:25.1.0-0 |
| 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) |
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/verticadb-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

image:
repo: docker.io
name: opentext/verticadb-operator:24.4.0-0
name: opentext/verticadb-operator:25.1.0-0
pullPolicy: IfNotPresent

rbac_proxy_image:
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const (
// the pod spec template. Rather it is set in the pod by a reconciler after
// the pod was created.
OperatorVersionLabel = "app.kubernetes.io/version"
CurOperatorVersion = "24.4.0-0" // The version number of the operator
CurOperatorVersion = "25.1.0-0" // 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"
Expand Down
Loading