Skip to content

Commit d736c6a

Browse files
committed
Release v1.22.1
1 parent ddd1e65 commit d736c6a

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Changelog for Cass Operator, new PRs should update the `main / unreleased` secti
99
* [BUGFIX]
1010
```
1111

12-
## unreleased
12+
## v1.22.1
1313

1414
* [BUGFIX] [#687](https://github.com/k8ssandra/cass-operator/issues/687) Prevent a crash when when StorageClassName was not set in the CassandraDataVolumeClaimSpec
1515
* [CHANGE] [#689](https://github.com/k8ssandra/cass-operator/issues/689) Allow k8ssandra.io labels and annotations in services config

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ Default installation is simple, the kubectl will create a namespace ``cass-opera
3737
Default install requires cert-manager to be installed, since webhooks require TLS certificates to be injected. See below how to install cert-manager if your environment does not have it installed previously.
3838

3939
```console
40-
kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.0
40+
kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.1
4141
```
4242

4343
If you wish to install it with cluster wide rights to monitor all the namespaces for ``CassandraDatacenter`` objects, use the following command:
4444

4545
```console
46-
kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.22.0
46+
kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.22.1
4747
```
4848

4949
Alternatively, if you checkout the code, you can use ``make deploy`` to run [Kustomize](https://kustomize.io/) and deploy the files.
@@ -61,7 +61,7 @@ cass-operator-555577b9f8-zgx6j 1/1 Running 0 25h
6161
If you have Prometheus installed in your cluster, you can apply the following command to install the Prometheus support:
6262

6363
```console
64-
kubectl apply -k github.com/k8ssandra/cass-operator/config/prometheus?ref=v1.22.0
64+
kubectl apply -k github.com/k8ssandra/cass-operator/config/prometheus?ref=v1.22.1
6565
```
6666

6767
#### Install cert-manager
@@ -83,10 +83,10 @@ kind: Kustomization
8383
namespace: cass-operator
8484

8585
resources:
86-
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.0
86+
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.1
8787

8888
components:
89-
- github.com/k8ssandra/cass-operator/config/components/cluster?ref=v1.22.0
89+
- github.com/k8ssandra/cass-operator/config/components/cluster?ref=v1.22.1
9090
```
9191
9292
We provide both components to modify the installation as well as some additional resources for custom features. At the moment, you can modify the behavior of the installation in the following ways, or remove a component to
@@ -121,7 +121,7 @@ kind: ImageConfig
121121
metadata:
122122
name: image-config
123123
images:
124-
system-logger: "k8ssandra/system-logger:v1.22.0"
124+
system-logger: "k8ssandra/system-logger:v1.22.1"
125125
config-builder: "datastax/cass-config-builder:1.0-ubi7"
126126
imageRegistry: "localhost:5000"
127127
defaults:
@@ -152,7 +152,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
152152
kind: Kustomization
153153

154154
resources:
155-
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.0
155+
- github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.22.1
156156

157157
components:
158158
- components/private_image_config
@@ -164,7 +164,7 @@ If you also wish to load the cass-operator from a different path, you will need
164164
images:
165165
- name: controller
166166
newName: localhost:5000/k8ssandra/cass-operator
167-
newTag: v1.22.0
167+
newTag: v1.22.1
168168
```
169169
170170
Run ``kubectl apply -k our_installation`` to install cass-operator.
@@ -253,7 +253,7 @@ reclaimPolicy: Delete
253253
Paste the above to a file and apply:
254254
255255
```
256-
kubectl apply -f https://raw.githubusercontent.com/k8ssandra/cass-operator/v1.22.0/operator/k8s-flavors/gke/storage.yaml
256+
kubectl apply -f https://raw.githubusercontent.com/k8ssandra/cass-operator/v1.22.1/operator/k8s-flavors/gke/storage.yaml
257257
```
258258

259259
### Creating a CassandraDatacenter

config/manager/image_config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ kind: ImageConfig
33
metadata:
44
name: image-config
55
images:
6-
system-logger: "k8ssandra/system-logger:latest"
7-
config-builder: "datastax/cass-config-builder:1.0-ubi8"
8-
k8ssandra-client: "k8ssandra/k8ssandra-client:v0.5.0"
6+
system-logger: "cr.k8ssandra.io/k8ssandra/system-logger:v1.22.1"
7+
config-builder: "cr.dtsx.io/datastax/cass-config-builder:1.0-ubi8"
8+
k8ssandra-client: "cr.k8ssandra.io/k8ssandra/k8ssandra-client:v0.5.0"
99
# cassandra:
1010
# "4.0.0": "k8ssandra/cassandra-ubi:latest"
1111
# dse:
@@ -17,10 +17,10 @@ images:
1717
defaults:
1818
# Note, postfix is ignored if repository is not set
1919
cassandra:
20-
repository: "k8ssandra/cass-management-api"
20+
repository: "cr.k8ssandra.io/k8ssandra/cass-management-api"
2121
suffix: "-ubi8"
2222
dse:
23-
repository: "datastax/dse-mgmtapi-6_8"
23+
repository: "cr.dtsx.io/datastax/dse-mgmtapi-6_8"
2424
suffix: "-ubi8"
2525
hcd:
2626
repository: "datastax/hcd"

config/manager/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
1313
kind: Kustomization
1414
images:
1515
- name: controller
16-
newName: k8ssandra/cass-operator
17-
newTag: latest
16+
newName: cr.k8ssandra.io/k8ssandra/cass-operator
17+
newTag: v1.22.1

0 commit comments

Comments
 (0)