From ec156a1d12a08f713ce0022622831bd5d5e048a1 Mon Sep 17 00:00:00 2001 From: Philip Matheson Date: Thu, 4 Mar 2021 12:03:29 -0500 Subject: [PATCH] When following these instructions migrating an existing cluster you can accidentally prune resources if you're not paying attention. This could cause a catastrophic loss of cluster resources and ruin some ones day. --- docs/guides/flux-v1-migration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/flux-v1-migration.md b/docs/guides/flux-v1-migration.md index 0b89b9c9..3f06cfc8 100644 --- a/docs/guides/flux-v1-migration.md +++ b/docs/guides/flux-v1-migration.md @@ -169,7 +169,7 @@ Configure the reconciliation of the `deploy` dir on your cluster: $ flux create kustomization app \ --source=app \ --path="./deploy" \ - --prune=true \ + --prune=false \ --interval=10m ✚ generating Kustomization ► applying Kustomization @@ -244,7 +244,7 @@ Configure the reconciliation of the `prod` overlay on your cluster: flux create kustomization app \ --source=GitRepository/app \ --path="./overlays/prod" \ - --prune=true \ + --prune=false \ --interval=10m ```