Skip to content

Commit

Permalink
Change operator version to 2.0.3 (#893)
Browse files Browse the repository at this point in the history
Automated changes by pre-release.yml GitHub action

Signed-off-by: GitHub <[email protected]>
Co-authored-by: cchen-vertica <[email protected]>
  • Loading branch information
github-actions[bot] and cchen-vertica authored Aug 8, 2024
1 parent 33ed393 commit 225911c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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 ?= 2.0.2
VERSION ?= 2.0.3
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: 2.0.2
version: 2.0.3
2 changes: 1 addition & 1 deletion helm-charts/verticadb-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
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: vertica/verticadb-operator:2.0.2
name: vertica/verticadb-operator:2.0.3
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 @@ -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"
Expand Down

0 comments on commit 225911c

Please sign in to comment.