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 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 b1cd3288..19566c0b 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,8 +1,8 @@ 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 +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