From 8acc903e5402d5d7f07f8637165cd4e94f959035 Mon Sep 17 00:00:00 2001 From: Mathieu Cesbron Date: Wed, 10 Jan 2024 18:24:51 +0100 Subject: [PATCH] Add namespace creation on doc --- CONTRIBUTING.md | 6 ++++++ README.md | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 03c659f41..1d970d3e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -142,6 +142,12 @@ $ make manifests ### Deploying Operator +Create the namespace for the operator: + +```shell +$ kubectl create namespace ot-operators +``` + The operator deployment can be done via `helm` cli, we just need to define the custom image name and tag for testing the operator functionality: ```shell diff --git a/README.md b/README.md index 18a916b7a..eff34849e 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,11 @@ But you can simply use the helm chart for installation. $ helm repo add ot-helm https://ot-container-kit.github.io/helm-charts/ ``` +```shell +# Create the namespace for the operator +$ kubectl create namespace ot-operators +``` + ```shell # Deploy the redis-operator $ helm upgrade redis-operator ot-helm/redis-operator --install --namespace ot-operators