Skip to content

Commit

Permalink
Update to final version of cass-operator 1.8.0 (k8ssandra#1119)
Browse files Browse the repository at this point in the history
* Update to final version of cass-operator 1.8.0

* Update scripts/update-helm-deps to output which chart it is upgrading
  • Loading branch information
burmanm authored Oct 4, 2021
1 parent 7d6566f commit e99b599
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-1.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ and date `## vX.Y.Z - YYYY-MM-DD` and create a new placeholder section for `unr
* [ENHANCEMENT] #874 expose cass-operator AdditionalServiceConfig in k8ssandra helm chart values.yaml
* [CHANGE] #1118 Update to Stargate 1.0.35
* [CHANGE] #950 Update to cass-operator 1.8.0-rc.1
* [CHANGE] Update to cass-operator v1.8.0
2 changes: 1 addition & 1 deletion charts/cass-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: cass-operator
description: |
Kubernetes operator which handles the provisioning and management of Apache Cassandra clusters.
type: application
version: 0.31.0
version: 0.31.1
appVersion: 1.8.0
dependencies:
- name: k8ssandra-common
Expand Down
2 changes: 1 addition & 1 deletion charts/cass-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Kubernetes operator which handles the provisioning and management of Apache Cass
| image.registry | string | `"docker.io"` | Container registry containing the repository where the image resides |
| image.repository | string | `"k8ssandra/cass-operator"` | Docker repository for cass-operator |
| image.pullPolicy | string | `"IfNotPresent"` | Pull policy for the operator container |
| image.tag | string | `"v1.8.0-rc.1"` | Tag of the cass-operator image to pull from image.repository |
| image.tag | string | `"v1.8.0"` | Tag of the cass-operator image to pull from image.repository |
| image.registryOverride | string | `nil` | Docker registry containing all cass-operator related images. Setting this allows for usage of an internal registry without specifying serverImage, configBuilderImage, and busyboxImage on all CassandraDatacenter objects. |
| imagePullSecrets | list | `[]` | References to secrets to use when pulling images. See: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ |
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account. |
Expand Down
2 changes: 1 addition & 1 deletion charts/cass-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ image:
pullPolicy: IfNotPresent

# -- Tag of the cass-operator image to pull from image.repository
tag: v1.8.0-rc.2
tag: v1.8.0

# -- Docker registry containing all cass-operator related images. Setting this
# allows for usage of an internal registry without specifying serverImage,
Expand Down
4 changes: 2 additions & 2 deletions charts/k8ssandra-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: k8ssandra-operator
description: |
Kubernetes operator which handles the provisioning and management of K8ssandra clusters.
type: application
version: 0.31.0
version: 0.31.1
appVersion: 1.0.0
dependencies:
- name: k8ssandra-common
version: 0.28.4
repository: file://../k8ssandra-common
- name: cass-operator
version: 0.31.0
version: 0.31.1
repository: file://../cass-operator
home: https://github.com/k8ssandra/k8ssandra-operator
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/k8ssandra/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 1.4.0-SNAPSHOT

dependencies:
- name: cass-operator
version: 0.31.0
version: 0.31.1
repository: file://../cass-operator
condition: cass-operator.enabled

Expand Down
1 change: 1 addition & 0 deletions scripts/update-helm-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ cd "$(dirname "$0")/.."
# Update dependencies for each chart, order is important!
CHARTS=("k8ssandra-common" "backup" "cass-operator" "medusa-operator" "reaper-operator" "restore" "k8ssandra" "k8ssandra-operator")
for CHART in ${CHARTS[@]}; do
echo "--- Updating $CHART"
if [[ -d "charts/$CHART" ]]; then
helm dep update charts/$CHART
else
Expand Down

0 comments on commit e99b599

Please sign in to comment.