From f38391f1df3150465fa53ca4dcc1d7f6c0d1213f Mon Sep 17 00:00:00 2001 From: Maciej Zimnoch Date: Tue, 29 Oct 2024 10:48:05 +0100 Subject: [PATCH] Use server-side apply when deploying aggregated manifests Client side apply doesn't work as our CRD got too big and cannot be put in annotation which isn't necessary when server-side apply is used. --- docs/source/generic.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/generic.md b/docs/source/generic.md index b0cbcc164e4..8c389c52436 100644 --- a/docs/source/generic.md +++ b/docs/source/generic.md @@ -40,7 +40,7 @@ cd scylla-operator First deploy Cert Manager, you can either follow [upsteam instructions](https://cert-manager.io/docs/installation/kubernetes/) or use following command: ```console -kubectl apply -f examples/common/cert-manager.yaml +kubectl apply --server-side -f examples/common/cert-manager.yaml ``` This will install Cert Manager to provision a self-signed certificate. @@ -56,7 +56,7 @@ kubectl -n cert-manager rollout status deployment.apps/cert-manager-webhook Deploy the Scylla Operator using the following commands: ```console -kubectl apply -f deploy/operator.yaml +kubectl apply --server-side -f deploy/operator.yaml ``` This will install the operator in namespace `scylla-operator`.