diff --git a/website/docs/getting-started/install-qovery/kubernetes/quickstart.md b/website/docs/getting-started/install-qovery/kubernetes/quickstart.md index 296518f40d..5e8ec17276 100644 --- a/website/docs/getting-started/install-qovery/kubernetes/quickstart.md +++ b/website/docs/getting-started/install-qovery/kubernetes/quickstart.md @@ -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 \ +--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 qovery qovery/qovery +``` + That's it, you can now use Qovery on your own Kubernetes cluster! diff --git a/website/docs/getting-started/install-qovery/kubernetes/quickstart.md.erb b/website/docs/getting-started/install-qovery/kubernetes/quickstart.md.erb index e9be13f3dd..ee5dd7cda4 100644 --- a/website/docs/getting-started/install-qovery/kubernetes/quickstart.md.erb +++ b/website/docs/getting-started/install-qovery/kubernetes/quickstart.md.erb @@ -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 \ +--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 qovery qovery/qovery +``` + That's it, you can now use Qovery on your own Kubernetes cluster!