From 50da1550f85e79f035ed2f4ad5d074863598ec94 Mon Sep 17 00:00:00 2001 From: Ankit152 Date: Tue, 4 Feb 2025 13:34:32 +0530 Subject: [PATCH] feat: [PKO-204] Document: bootstrap job as a helm chart Signed-off-by: Ankit152 --- content/en/docs/getting_started/installation.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/content/en/docs/getting_started/installation.md b/content/en/docs/getting_started/installation.md index c655ce5..c1fbcc3 100644 --- a/content/en/docs/getting_started/installation.md +++ b/content/en/docs/getting_started/installation.md @@ -14,13 +14,21 @@ Check the latest available release at [Package Operator Releases](https://github Package Operator is able to bootstrap and upgrade itself using a special self-bootstrap-job. Make sure `KUBECONFIG` is defined and the config points at your Kubernetes cluster. -Then you can deploy Package Operator to bootstrap itself: +Then you can deploy Package Operator to bootstrap itself. + +Note: Both these command will not install the webhook server. + +### Using `kubectl` cli ```sh kubectl create -f https://github.com/package-operator/package-operator/releases/latest/download/self-bootstrap-job.yaml ``` -This will not install the webhook server. +### Using `helm` cli + +```sh +helm upgrade --install package-operator oci://quay.io/package-operator/helm-charts/package-operator +``` ## kubectl package plugin