Skip to content

Commit

Permalink
Examples and README updated to refer to 3.0.35 chart (#1213)
Browse files Browse the repository at this point in the history
* Examples and README updated to refer to 3.0.35 chart
  • Loading branch information
devdattakulkarni authored Feb 16, 2024
1 parent 38c78a5 commit f74ebb1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Let’s look at an example of creating a multi-instance WordPress Service using
5) Install KubePlus Operator using the generated provider kubeconfig

```
helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.34.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json -n $KUBEPLUS_NS
helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.35.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json -n $KUBEPLUS_NS
until kubectl get pods -A | grep kubeplus | grep Running; do echo "Waiting for KubePlus to start.."; sleep 1; done
```

Expand Down
2 changes: 1 addition & 1 deletion examples/multitenancy/hello-world/steps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Install KubePlus Operator
$ KUBEPLUS_NS=default
$ python ../../../provider-kubeconfig.py create $KUBEPLUS_NS
$ cp kubeplus-saas-provider.json provider.conf
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.34.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=provider.conf
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.35.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=provider.conf
$ kubectl get pods (wait till kubeplus pod is Running)

Install KubePlus kubectl plugins
Expand Down
2 changes: 1 addition & 1 deletion examples/multitenancy/odoo/steps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This example shows delivering Bitnami Odoo Helm chart as-a-service using KubePlu
$ python ../../../provider-kubeconfig.py create default -s $server
- Install KubePlus

$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.34.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.35.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json
- Wait till KubePlus Pod is Running
$ kubectl get pods -A

Expand Down
2 changes: 1 addition & 1 deletion examples/multitenancy/wordpress/steps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This example shows delivering Wordpress Helm chart as-a-service using KubePlus.
$ python ../../../provider-kubeconfig.py create $KUBEPLUS_NS

4. Install KubePlus Operator:
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.34.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=kubeplus-saas-provider.json
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.35.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=kubeplus-saas-provider.json

5. Extract consumer kubeconfig:
$ kubectl get configmaps kubeplus-saas-consumer-kubeconfig -n $KUBEPLUS_NS -o jsonpath="{.data.kubeplus-saas-consumer\.json}" > consumer.conf
Expand Down

0 comments on commit f74ebb1

Please sign in to comment.