Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Dec 9, 2023
1 parent 540b89a commit aacf905
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/docs/v2023.12.11/setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ info:
# Setup

<div style="text-align: center;">
<a class="button is-info is-medium is-active has-text-weight-normal" href="/docs/v2023.12.11/setup/install/kubedb" style="background:#FC6011; width: 18rem;">Try KubeDB</a>
<a class="button is-info is-medium is-active has-text-weight-normal" href="/docs/v2023.12.11/setup/install/kubedb" style="background:#FC6011; width: 18rem;">Install KubeDB</a>
</div>
<br>

Expand Down
3 changes: 2 additions & 1 deletion content/docs/v2023.12.11/setup/uninstall/kubedb.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ $ kubectl get crd -o name | grep kubedb.com | xargs kubectl delete
If you prefer to not use Helm, you can generate YAMLs from KubeDB chart and uninstall using `kubectl`.

```bash
$ helm template kubedb appscode/kubedb --namespace kubedb | kubectl delete -f -
$ helm template kubedb oci://ghcr.io/appscode-charts/kubedb \
--namespace kubedb | kubectl delete -f -
```

</div>
Expand Down
13 changes: 8 additions & 5 deletions content/docs/v2023.12.11/setup/upgrade/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ Now, upgrade the KubeDB helm chart using the following command. You can find the

```bash
helm upgrade -i kubedb oci://ghcr.io/appscode-charts/kubedb \
--version {{< param "info.version" >}} \
--namespace kubedb --create-namespace \
--set-file global.license=/path/to/the/license.txt
--version {{< param "info.version" >}} \
--namespace kubedb --create-namespace \
--set-file global.license=/path/to/the/license.txt \
--wait --burst-limit=10000 --debug
```

{{< notice type="warning" message="If you are using **private Docker registries** using *self-signed certificates*, please pass the registry domains to the operator like below:" >}}
Expand All @@ -60,7 +61,8 @@ helm upgrade -i kubedb oci://ghcr.io/appscode-charts/kubedb \
--namespace kubedb --create-namespace \
--set global.insecureRegistries[0]=hub.example.com \
--set global.insecureRegistries[1]=hub2.example.com \
--set-file global.license=/path/to/the/license.txt
--set-file global.license=/path/to/the/license.txt \
--wait --burst-limit=10000 --debug
```

#### 3. Install/Upgrade Stash Operator
Expand Down Expand Up @@ -127,7 +129,8 @@ helm ls -A | grep kubedb
helm upgrade -i kubedb oci://ghcr.io/appscode-charts/kubedb \
--version=<cur_version> \
--reuse-values \
--set-file global.license=/path/to/new/license.txt
--set-file global.license=/path/to/new/license.txt \
--wait --burst-limit=10000 --debug
```

</div>
Expand Down

0 comments on commit aacf905

Please sign in to comment.