From 614b431331dc83900f5d48e4188e49472f009540 Mon Sep 17 00:00:00 2001 From: armab Date: Wed, 7 Aug 2019 21:16:41 +0100 Subject: [PATCH 1/3] Switch st2 version to 3.2dev --- Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chart.yaml b/Chart.yaml index b1cd3288..fffda080 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 # Update StackStorm version here to rely on other Docker images tags -appVersion: 3.1dev +appVersion: 3.2dev name: stackstorm-ha version: 0.17.0 description: StackStorm K8s Helm Chart, optimized for running StackStorm in HA environment. From 98c82025142c4b5f62d6389f01157aa46fdb1be3 Mon Sep 17 00:00:00 2001 From: armab Date: Wed, 7 Aug 2019 21:19:21 +0100 Subject: [PATCH 2/3] Increment Helm chart version and add Changelog --- CHANGELOG.md | 3 +++ Chart.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ee4b602..9760c739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## In Development +## v0.18.0 +* Pin st2 to `v3.2dev` as a new latest development version (#77) + ## v0.17.0 * Add chart e2e `helm test` with BATS. Run CI checks with minikube and CircleCI on every PR/push and nightly. diff --git a/Chart.yaml b/Chart.yaml index fffda080..19566c0b 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 # Update StackStorm version here to rely on other Docker images tags appVersion: 3.2dev name: stackstorm-ha -version: 0.17.0 +version: 0.18.0 description: StackStorm K8s Helm Chart, optimized for running StackStorm in HA environment. home: https://stackstorm.com/#product icon: https://avatars1.githubusercontent.com/u/4969009 From 65ee0612e0c860f8d03dcccf615195b5d3f5c1ee Mon Sep 17 00:00:00 2001 From: armab Date: Thu, 8 Aug 2019 13:51:24 +0100 Subject: [PATCH 3/3] Temporary pin minikube to v1.2.0 due to regression in v1.3.0 See https://github.com/kubernetes/minikube/issues/5014 --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4539b717..bc1d16d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,8 @@ orbs: kubernetes: circleci/kubernetes@0.3.0 # https://circleci.com/orbs/registry/orb/circleci/helm helm: circleci/helm@0.1.2 + # https://circleci.com/orbs/registry/orb/ccpgames/minikube + minikube: ccpgames/minikube@0.0.1 jobs: # Run Helm Lint checks @@ -68,11 +70,9 @@ jobs: steps: - checkout - kubernetes/install - - run: - name: Install Minikube - command: | - sudo curl -fLo /usr/local/bin/minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && sudo chmod +x /usr/local/bin/minikube - minikube version + - minikube/minikube-install: + # Temporary pin minikube to 1.2.0 due to regression in 1.3.0 (https://github.com/kubernetes/minikube/issues/5014) + version: v1.2.0 - run: name: Create new K8s cluster command: sudo -E minikube start --vm-driver=none --cpus $(nproc) --memory 4096