Skip to content

Commit

Permalink
feat: update quickstart BYOK
Browse files Browse the repository at this point in the history
  • Loading branch information
deimosfr committed Jan 26, 2024
1 parent 96dd5f4 commit 615e0a1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,21 @@ Learn more about the configuration in the [Configuration page][docs.getting-star
Install Qovery on your Kubernetes cluster.

```bash
helm upgrade --install -n qovery -f values-demo.yaml qovery qovery/qovery
helm upgrade --install --wait --atomic --create-namespace -n qovery -f <your-values-file.yaml> \
--set services.certificates.cert-manager-configs.enabled=false,services.certificates.qovery-cert-manager-webhook.enabled=false \
qovery qovery/qovery
```
* `-n qovery`: the namespace where Qovery and its dependencies will be installed
* `--set...`: override (only for the first deployment time, if you want to use Cert-Manager) to let cert-manager install its CRDs
* `-f your-values-file.yaml`: the values file you've downloaded, overrided with the Qovery config and your custom config
* `qovery/qovery`: name of the chart to deploy
* `qovery`: name of the release

If you want to use Cert-Manager, you can remove the `--set...` for the future updates (or if already installed):
```bash
helm upgrade --install --create-namespace -n qovery -f <your-values-file.yaml> qovery qovery/qovery
```

That's it, you can now use Qovery on your own Kubernetes cluster!

</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,21 @@ Learn more about the configuration in the [Configuration page][docs.getting-star
Install Qovery on your Kubernetes cluster.

```bash
helm upgrade --install -n qovery -f values-demo.yaml qovery qovery/qovery
helm upgrade --install --wait --atomic --create-namespace -n qovery -f <your-values-file.yaml> \
--set services.certificates.cert-manager-configs.enabled=false,services.certificates.qovery-cert-manager-webhook.enabled=false \
qovery qovery/qovery
```
* `-n qovery`: the namespace where Qovery and its dependencies will be installed
* `--set...`: override (only for the first deployment time, if you want to use Cert-Manager) to let cert-manager install its CRDs
* `-f your-values-file.yaml`: the values file you've downloaded, overrided with the Qovery config and your custom config
* `qovery/qovery`: name of the chart to deploy
* `qovery`: name of the release

If you want to use Cert-Manager, you can remove the `--set...` for the future updates (or if already installed):
```bash
helm upgrade --install --create-namespace -n qovery -f <your-values-file.yaml> qovery qovery/qovery
```

That's it, you can now use Qovery on your own Kubernetes cluster!

</li>
Expand Down

0 comments on commit 615e0a1

Please sign in to comment.