Skip to content

Commit a841b54

Browse files
authored
Merge pull request #164 from manisha-tanwar/patch-1
New Location For Stable Charts
2 parents 562bae5 + bdf0808 commit a841b54

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Prepare Helm
2525
command: |
2626
set -x
27-
helm init --client-only
27+
helm init --stable-repo-url https://charts.helm.sh/stable --client-only
2828
helm dependency update
2929
- run:
3030
name: Helm Lint Check
@@ -78,7 +78,11 @@ jobs:
7878
command: sudo -E minikube start --vm-driver=none
7979
environment:
8080
CHANGE_MINIKUBE_NONE_USER: true
81-
- helm/install-helm-on-cluster
81+
- run:
82+
name: Helm Init
83+
command: |
84+
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash
85+
helm init --stable-repo-url https://charts.helm.sh/stable
8286
- run:
8387
name: Update stackstorm-ha chart dependencies
8488
command: helm dependency update

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## In Development
44

5+
## v0.41.0
6+
* Fix Helm 2 repository location to a new working URL https://charts.helm.sh/stable (#164) (by @manisha-tanwar)
57

68
## v0.40.0
79
* Switch st2 version to `v3.4dev` as a new latest development version (#157)

Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
# Update StackStorm version here to rely on other Docker images tags
33
appVersion: 3.4dev
44
name: stackstorm-ha
5-
version: 0.40.0
5+
version: 0.41.0
66
description: StackStorm K8s Helm Chart, optimized for running StackStorm in HA environment.
77
home: https://stackstorm.com/
88
icon: https://landscape.cncf.io/logos/stack-storm.svg

requirements.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
dependencies:
22
- name: rabbitmq-ha
33
version: 1.46.1
4-
repository: https://kubernetes-charts.storage.googleapis.com/
4+
repository: https://charts.helm.sh/stable
55
condition: rabbitmq-ha.enabled
66
- name: mongodb-replicaset
77
version: 3.12.0
8-
repository: https://kubernetes-charts.storage.googleapis.com/
8+
repository: https://charts.helm.sh/stable
99
alias: mongodb-ha
1010
condition: mongodb-ha.enabled
1111
- name: external-dns
1212
version: 1.6.1
13-
repository: https://kubernetes-charts.storage.googleapis.com/
13+
repository: https://charts.helm.sh/stable
1414
condition: external-dns.enabled
1515
- name: etcd-operator
1616
version: 0.10.3
17-
repository: https://kubernetes-charts.storage.googleapis.com/
17+
repository: https://charts.helm.sh/stable
1818
condition: etcd-operator.enabled
19-

0 commit comments

Comments
 (0)