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

Update to cass-operator v1.18.1 #1104

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions CHANGELOG/CHANGELOG-1.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ When cutting a new release, update the `unreleased` heading to the tag being gen
## unreleased

* [CHANGE] [#1088](https://github.com/k8ssandra/k8ssandra-operator/issues/1088) Use the Scarf proxy for image coordinates
* [CHANGE] Update to cass-operator v1.18.0
* [ENHANCEMENT] [#1073](https://github.com/k8ssandra/k8ssandra-operator/issues/1073) Add a namespace label to the Cassandra metrics
* [BUGFIX] [#1060](https://github.com/k8ssandra/k8ssandra-operator/issues/1060) Fix restore mapping shuffling nodes when restoring in place
* [BUGFIX] [#1061](https://github.com/k8ssandra/k8ssandra-operator/issues/1061) Point to cass-config-builder 1.0.7 for arm64 compatibility
Expand Down
8 changes: 1 addition & 7 deletions config/cass-operator/cluster-scoped/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=master
- github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.18.0

components:
- ../../components/cass-operator-image-config

# TODO: remove these image changes before release so that they don't pull a dev release of cass-operator.
# This is required when a new feature of cass-operator is needed that is not yet released.
images:
- name: k8ssandra/cass-operator
newTag: v1.18.0-dev.5189beb-20231020
8 changes: 1 addition & 7 deletions config/cass-operator/ns-scoped/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=master
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.0

components:
- ../../components/cass-operator-image-config

# TODO: remove these image changes before release so that they don't pull a dev release of cass-operator.
# This is required when a new feature of cass-operator is needed that is not yet released.
images:
- name: k8ssandra/cass-operator
newTag: v1.18.0-dev.5189beb-20231020
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ kind: ImageConfig
metadata:
name: image-config
images:
system-logger: "k8ssandra/system-logger:v1.17.2"
system-logger: "k8ssandra/system-logger:v1.18.0"
config-builder: "datastax/cass-config-builder:1.0.7"
k8ssandra-client: "k8ssandra/k8ssandra-client:v0.2.0"
k8ssandra-client: "k8ssandra/k8ssandra-client:v0.2.1"
# cassandra:
# "4.0.0": "k8ssandra/cassandra-ubi:latest"
# dse:
Expand All @@ -18,5 +18,7 @@ defaults:
# Note, postfix is ignored if repository is not set
cassandra:
repository: "k8ssandra/cass-management-api"
suffix: "-ubi8"
dse:
repository: "datastax/dse-mgmtapi-6_8"
repository: "datastax/dse-mgmtapi-6_8"
suffix: "-ubi8"
2 changes: 1 addition & 1 deletion pkg/test/testenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import (
const (
clustersToCreate = 3
clusterProtoName = "cluster-%d-%s"
cassOperatorVersion = "v1.17.2"
cassOperatorVersion = "v1.18.0"
prometheusOperatorVersion = "v0.9.0"
)

Expand Down
2 changes: 1 addition & 1 deletion test/kuttl/test-servicemonitors/03-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
- name: DSE_MGMT_EXPLICIT_START
value: "true"
name: cassandra
- image: k8ssandra/system-logger:v1.17.2
- image: k8ssandra/system-logger:v1.18.0
name: server-system-logger
status:
readyReplicas: 1
Expand Down
Loading