Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #298 from Orange-OpenSource/release-1.1.2
Browse files Browse the repository at this point in the history
Fix Helm publishing & Bump release
  • Loading branch information
fdehay authored Feb 5, 2021
2 parents abcde6e + 55d4b26 commit 4ec6cab
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ workflows:
- operator/publish-helm:
name: publish-helm-orange-incubator-casskop
requires:
- kuttl-test ScaleUpAndDown
- report-casskop
<<: *only_on_release_tag

- deploy-website:
Expand Down
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@

# CassKop Cassandra Kubernetes Operator Changelog

## v1.1.2

- PR [#298](https://github.com/Orange-OpenSource/casskop/pull/297) - Fix Helm publishing


## v1.1.1

- PR [#297](https://github.com/Orange-OpenSource/casskop/pull/297) - Fix sonar jdk
-
## v1.1.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions helm/cassandra-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: cassandra-operator
home: https://github.com/Orange-OpenSource/casskop
sources:
- https://github.com/Orange-OpenSource/casskop
version: 1.1.0
appVersion: 1.1.0-release
version: 1.1.2
appVersion: 1.1.2-release
maintainers:
- name: allamand
email: sebastien.allamand@orange.com
Expand Down
2 changes: 1 addition & 1 deletion helm/cassandra-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
image:
repository: orangeopensource/casskop
tag: v1.1.0-release
tag: v1.1.2-release
pullPolicy: Always
imagePullSecrets:
enabled: false
Expand Down
4 changes: 2 additions & 2 deletions multi-casskop/helm/multi-casskop/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0
appVersion: 1.1.0-release
version: 1.1.2
appVersion: 1.1.2-release
maintainers:
- name: allamand
email: sebastien.allamand@orange.com
Expand Down
2 changes: 1 addition & 1 deletion multi-casskop/helm/multi-casskop/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
image:
repository: orangeopensource/multi-casskop
tag: v1.1.0-release
tag: v1.1.2-release
pullPolicy: Always
imagePullSecrets:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion multi-casskop/samples/gke/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ variable "managed_zone" {
variable "casskop_image_tag" {
description = ""
type = string
default = "v1.1.0-release"
default = "v1.1.2-release"
}

// Provider definition
Expand Down
2 changes: 1 addition & 1 deletion multi-casskop/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
package version

var (
Version = "1.1.0"
Version = "1.1.2"
)
7 changes: 5 additions & 2 deletions tools/publish_helm_gcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ set -o nounset
set -o pipefail

HELM_TARGET_DIR=$(pwd)/tmp/incubator
readonly HELM_URL=https://storage.googleapis.com/kubernetes-helm
readonly HELM_TARBALL=helm-v2.9.1-linux-amd64.tar.gz
#readonly HELM_URL=https://storage.googleapis.com/kubernetes-helm
#readonly HELM_TARBALL=helm-v2.9.1-linux-amd64.tar.gz
readonly HELM_URL=https://get.helm.sh
readonly HELM_TARBALL=helm-v3.4.2-linux-amd64.tar.gz

#readonly STABLE_REPO_URL=https://orange-kubernetes-charts.storage.googleapis.com/
readonly INCUBATOR_REPO_URL=https://orange-kubernetes-charts-incubator.storage.googleapis.com/
#readonly GCS_BUCKET_STABLE=gs://orange-kubernetes-charts
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
package version

var (
Version = "1.1.0"
Version = "1.1.2"
)

0 comments on commit 4ec6cab

Please sign in to comment.