Skip to content

Commit

Permalink
KubePlus chart - 3.0.22
Browse files Browse the repository at this point in the history
Support for additional properties in CRDs.
This enables passing in additional properties in metadata
of a CRD instance, without having to define those properties
ahead of time.
  • Loading branch information
devdattakulkarni committed Mar 17, 2023
1 parent e55e2a5 commit da7d60f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Let’s look at an example of creating a multi-instance WordPress Service using
3) Install KubePlus Operator using the generated provider kubeconfig

```
helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.21.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.22.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
4 changes: 2 additions & 2 deletions deploy/kubeplus-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.0.21
version: 3.0.22

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: c9c58d84f92783289083059b319e33a3000eb040
appVersion: 726c7aa86641caa7993e775d1f0bfd23b3ce2852
2 changes: 1 addition & 1 deletion deploy/kubeplus-chart/templates/kubeplus-components-6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ spec:
- "webhook-tls-certificates"
containers:
- name: kubeconfiggenerator
image: gcr.io/cloudark-kubeplus/kubeconfiggenerator:3.0.15
image: gcr.io/cloudark-kubeplus/kubeconfiggenerator:3.0.16
imagePullPolicy: IfNotPresent
env:
- name: KUBEPLUS_NAMESPACE
Expand Down
1 change: 1 addition & 0 deletions deploy/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
3.0.13
3.0.14
3.0.15
3.0.16
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.21.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=provider.conf
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.22.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 @@ -19,7 +19,7 @@ This example shows delivering Bitnami Odoo Helm chart as-a-service using KubePlu
- server=`more $KUBECONFIG | grep server | cut -d '/' -f 3`
- python ../../../provider-kubeconfig.py create default $server
- Install KubePlus
- helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.21.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json
- helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.22.tgz?raw=true" --kubeconfig=kubeplus-saas-provider.json
- Wait till KubePlus Pod is Running (kubectl get pods -A)

- Setup KubePlus kubectl plugins
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 @@ -21,7 +21,7 @@ Extract provider kubeconfig:
- python ../../../provider-kubeconfig.py create $KUBEPLUS_NS

Install KubePlus Operator
$ helm install kubeplus "https://github.com/cloud-ark/operatorcharts/blob/master/kubeplus-chart-3.0.21.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.22.tgz?raw=true" -n $KUBEPLUS_NS --kubeconfig=kubeplus-saas-provider.json


Extract consumer kubeconfig:
Expand Down

0 comments on commit da7d60f

Please sign in to comment.