From c7ea5fca161c8af69ac97fce0784898f628ce559 Mon Sep 17 00:00:00 2001 From: Michael Burman Date: Wed, 25 Oct 2023 19:46:41 +0300 Subject: [PATCH] Release v1.18.1 --- CHANGELOG.md | 2 ++ Makefile | 2 +- README.md | 18 +++++++++--------- config/manager/image_config.yaml | 2 +- config/manager/kustomization.yaml | 2 +- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2b47c83..783a1796 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ Changelog for Cass Operator, new PRs should update the `main / unreleased` secti * [BUGFIX] ``` +## v1.18.1 + ## v1.18.0 * [CHANGE] [#479](https://github.com/k8ssandra/cass-operator/issues/479) Set the default deployed DSE image to use our newer management-api by changing the repository to datastax/dse-mgmtapi-6_8 diff --git a/Makefile b/Makefile index ed6aaab0..d211b438 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # - 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 ?= 1.18.0 +VERSION ?= 1.18.1 COMMIT := $(shell git rev-parse --short HEAD) DATE := $(shell date +%Y%m%d) diff --git a/README.md b/README.md index da3d3734..d3010dce 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,13 @@ Default installation is simple, the kubectl will create a namespace ``cass-opera 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. ```console -kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.0 +kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.1 ``` If you wish to install it with cluster wide rights to monitor all the namespaces for ``CassandraDatacenter`` objects, use the following command: ```console -kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.18.0 +kubectl apply --force-conflicts --server-side -k github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.18.1 ``` 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 If you have Prometheus installed in your cluster, you can apply the following command to install the Prometheus support: ```console -kubectl apply -k github.com/k8ssandra/cass-operator/config/prometheus?ref=v1.18.0 +kubectl apply -k github.com/k8ssandra/cass-operator/config/prometheus?ref=v1.18.1 ``` #### Install cert-manager @@ -83,10 +83,10 @@ kind: Kustomization namespace: cass-operator resources: - - github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.0 + - github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.1 components: - - github.com/k8ssandra/cass-operator/config/components/cluster?ref=v1.18.0 + - github.com/k8ssandra/cass-operator/config/components/cluster?ref=v1.18.1 ``` 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 metadata: name: image-config images: - system-logger: "k8ssandra/system-logger:v1.18.0" + system-logger: "k8ssandra/system-logger:v1.18.1" config-builder: "datastax/cass-config-builder:1.0-ubi7" imageRegistry: "localhost:5000" defaults: @@ -152,7 +152,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.0 + - github.com/k8ssandra/cass-operator/config/deployments/default?ref=v1.18.1 components: - components/private_image_config @@ -164,7 +164,7 @@ If you also wish to load the cass-operator from a different path, you will need images: - name: controller newName: localhost:5000/k8ssandra/cass-operator - newTag: v1.18.0 + newTag: v1.18.1 ``` Run ``kubectl apply -k our_installation`` to install cass-operator. @@ -253,7 +253,7 @@ reclaimPolicy: Delete Paste the above to a file and apply: ``` -kubectl apply -f https://raw.githubusercontent.com/k8ssandra/cass-operator/v1.18.0/operator/k8s-flavors/gke/storage.yaml +kubectl apply -f https://raw.githubusercontent.com/k8ssandra/cass-operator/v1.18.1/operator/k8s-flavors/gke/storage.yaml ``` ### Creating a CassandraDatacenter diff --git a/config/manager/image_config.yaml b/config/manager/image_config.yaml index 2f3c154e..86437c46 100644 --- a/config/manager/image_config.yaml +++ b/config/manager/image_config.yaml @@ -3,7 +3,7 @@ kind: ImageConfig metadata: name: image-config images: - system-logger: "cr.k8ssandra.io/k8ssandra/system-logger:v1.18.0" + system-logger: "cr.k8ssandra.io/k8ssandra/system-logger:v1.18.1" config-builder: "cr.dtsx.io/datastax/cass-config-builder:1.0-ubi7" k8ssandra-client: "cr.k8ssandra.io/k8ssandra/k8ssandra-client:v0.2.1" # cassandra: diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 497910e4..64e3f30d 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -14,4 +14,4 @@ kind: Kustomization images: - name: controller newName: cr.k8ssandra.io/k8ssandra/cass-operator - newTag: v1.18.0 + newTag: v1.18.1