Skip to content

Commit

Permalink
Prepare for next version 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Aug 30, 2024
1 parent d736c6a commit 9559155
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Changelog for Cass Operator, new PRs should update the `main / unreleased` secti
* [BUGFIX]
```

## unreleased

## v1.22.1

* [BUGFIX] [#687](https://github.com/k8ssandra/cass-operator/issues/687) Prevent a crash when when StorageClassName was not set in the CassandraDataVolumeClaimSpec
Expand Down
10 changes: 5 additions & 5 deletions config/manager/image_config.yaml
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: "cr.k8ssandra.io/k8ssandra/system-logger:v1.22.1"
config-builder: "cr.dtsx.io/datastax/cass-config-builder:1.0-ubi8"
k8ssandra-client: "cr.k8ssandra.io/k8ssandra/k8ssandra-client:v0.5.0"
system-logger: "k8ssandra/system-logger:latest"
config-builder: "datastax/cass-config-builder:1.0-ubi8"
k8ssandra-client: "k8ssandra/k8ssandra-client:v0.5.0"
# cassandra:
# "4.0.0": "k8ssandra/cassandra-ubi:latest"
# dse:
Expand All @@ -17,10 +17,10 @@ images:
defaults:
# Note, postfix is ignored if repository is not set
cassandra:
repository: "cr.k8ssandra.io/k8ssandra/cass-management-api"
repository: "k8ssandra/cass-management-api"
suffix: "-ubi8"
dse:
repository: "cr.dtsx.io/datastax/dse-mgmtapi-6_8"
repository: "datastax/dse-mgmtapi-6_8"
suffix: "-ubi8"
hcd:
repository: "datastax/hcd"
Expand Down
4 changes: 2 additions & 2 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: cr.k8ssandra.io/k8ssandra/cass-operator
newTag: v1.22.1
newName: k8ssandra/cass-operator
newTag: latest
2 changes: 1 addition & 1 deletion scripts/pre-release-process.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if [[ ! $0 == scripts/* ]]; then
exit 1
fi

if [ "$#" -le 1 ]; then
if [ "$#" -lt 1 ]; then
echo "Usage: scripts/pre-release-process.sh newTag"
exit
fi
Expand Down

0 comments on commit 9559155

Please sign in to comment.