From 1643aa40f719150013be4aae97b072d9611fe82f Mon Sep 17 00:00:00 2001 From: Cyril Scetbon Date: Thu, 4 Feb 2021 20:37:22 -0500 Subject: [PATCH 1/2] Release 1.1.0 --- Changelog.md | 25 ++++++++++++++++++++ helm/cassandra-operator/Chart.yaml | 4 ++-- helm/cassandra-operator/values.yaml | 2 +- multi-casskop/helm/multi-casskop/Chart.yaml | 4 ++-- multi-casskop/helm/multi-casskop/values.yaml | 2 +- multi-casskop/samples/gke/terraform/main.tf | 2 +- multi-casskop/version/version.go | 2 +- version/version.go | 2 +- 8 files changed, 34 insertions(+), 9 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1ce3f1787..d028af0f3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,31 @@ # CassKop Cassandra Kubernetes Operator Changelog +## v1.1.0 + +### Added + +- PR [#285](https://github.com/Orange-OpenSource/casskop/pull/285) - Bump ini from 1.3.5 to 1.3.8 in /website +- PR [#286](https://github.com/Orange-OpenSource/casskop/pull/286) - Add the 2 new pages (Cassandra Backup & Restore) to the sidebar + bump version +- PR [#287](https://github.com/Orange-OpenSource/casskop/pull/287) - Restrict psp role in helm chart to get and list +- PR [#289](https://github.com/Orange-OpenSource/casskop/pull/289) - Do not use data folder to store downloaded sstables +- PR [#290](https://github.com/Orange-OpenSource/casskop/pull/290) - Enforce HARDLINKS restore strategy as it is faster +- PR [#291](https://github.com/Orange-OpenSource/casskop/pull/291) - Add check if cassandraBackup.Annotations map is nil before assignement +- PR [#293](https://github.com/Orange-OpenSource/casskop/pull/293) - Add option to Rename a table when restoring it +- PR [#294](https://github.com/Orange-OpenSource/casskop/pull/294) - Generate CRDs to deploy dir AND both helms CRDs dirs +- PR [#295](https://github.com/Orange-OpenSource/casskop/pull/295) - Upgrade Icarus to 1.0.8 (Fix error catching) + +### Changed + +- CassandraRestore CRD (restorationStrategyType removed, add rename option) + +### Deprecated + +### Removed + +- v1beta1 CRDs + + ## v1.0.2 ### Added diff --git a/helm/cassandra-operator/Chart.yaml b/helm/cassandra-operator/Chart.yaml index 26c96a3d2..fd485bed1 100644 --- a/helm/cassandra-operator/Chart.yaml +++ b/helm/cassandra-operator/Chart.yaml @@ -4,8 +4,8 @@ name: cassandra-operator home: https://github.com/Orange-OpenSource/casskop sources: - https://github.com/Orange-OpenSource/casskop -version: 1.0.2 -appVersion: 1.0.2-release +version: 1.1.0 +appVersion: 1.1.0-release maintainers: - name: allamand email: sebastien.allamand@orange.com diff --git a/helm/cassandra-operator/values.yaml b/helm/cassandra-operator/values.yaml index 29e4acce7..7dec63be4 100644 --- a/helm/cassandra-operator/values.yaml +++ b/helm/cassandra-operator/values.yaml @@ -2,7 +2,7 @@ ## image: repository: orangeopensource/casskop - tag: v1.0.2-release + tag: v1.1.0-release pullPolicy: Always imagePullSecrets: enabled: false diff --git a/multi-casskop/helm/multi-casskop/Chart.yaml b/multi-casskop/helm/multi-casskop/Chart.yaml index 87a716344..38829ede0 100644 --- a/multi-casskop/helm/multi-casskop/Chart.yaml +++ b/multi-casskop/helm/multi-casskop/Chart.yaml @@ -4,8 +4,8 @@ name: multi-casskop home: https://github.com/Orange-OpenSource/casskop/multi-casskop sources: - https://github.com/Orange-OpenSource/casskop/multi-casskop -version: 1.0.2 -appVersion: 1.0.2-release +version: 1.1.0 +appVersion: 1.1.0-release maintainers: - name: allamand email: sebastien.allamand@orange.com diff --git a/multi-casskop/helm/multi-casskop/values.yaml b/multi-casskop/helm/multi-casskop/values.yaml index 40d55c762..804cd60fa 100644 --- a/multi-casskop/helm/multi-casskop/values.yaml +++ b/multi-casskop/helm/multi-casskop/values.yaml @@ -2,7 +2,7 @@ ## image: repository: orangeopensource/multi-casskop - tag: v1.0.2-release + tag: v1.1.0-release pullPolicy: Always imagePullSecrets: enabled: false diff --git a/multi-casskop/samples/gke/terraform/main.tf b/multi-casskop/samples/gke/terraform/main.tf index 4065a5c8d..7a24a446d 100644 --- a/multi-casskop/samples/gke/terraform/main.tf +++ b/multi-casskop/samples/gke/terraform/main.tf @@ -68,7 +68,7 @@ variable "managed_zone" { variable "casskop_image_tag" { description = "" type = string - default = "v1.0.2-release" + default = "v1.1.0-release" } // Provider definition diff --git a/multi-casskop/version/version.go b/multi-casskop/version/version.go index f00afb1d6..9e445b789 100644 --- a/multi-casskop/version/version.go +++ b/multi-casskop/version/version.go @@ -15,5 +15,5 @@ package version var ( - Version = "1.0.2" + Version = "1.1.0" ) diff --git a/version/version.go b/version/version.go index f00afb1d6..9e445b789 100644 --- a/version/version.go +++ b/version/version.go @@ -15,5 +15,5 @@ package version var ( - Version = "1.0.2" + Version = "1.1.0" ) From f1d04fa4c25cff935ebf939268436fb2db318e98 Mon Sep 17 00:00:00 2001 From: Cyril Scetbon Date: Thu, 4 Feb 2021 20:42:31 -0500 Subject: [PATCH 2/2] Remove restorationStrategyType option from restore's documentation --- website/docs/5_operations/3_5_backup_restore.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/5_operations/3_5_backup_restore.md b/website/docs/5_operations/3_5_backup_restore.md index 971d412e0..4dd6e74ba 100644 --- a/website/docs/5_operations/3_5_backup_restore.md +++ b/website/docs/5_operations/3_5_backup_restore.md @@ -89,7 +89,6 @@ metadata: spec: cassandraBackup: nightly-cassandra-backup cassandraCluster: test-cluster - restorationStrategyType: HARDLINKS entities: k1.t1 rename: k1.t1: k1.t2