From 6030031fb2d63c331fefd198928bf1414f47b49d Mon Sep 17 00:00:00 2001 From: yiannis Date: Fri, 27 Oct 2023 13:06:47 +0100 Subject: [PATCH] docs: Add command to remove podinfo --- website/docs/open-source/getting-started/deploy-OSS.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/docs/open-source/getting-started/deploy-OSS.mdx b/website/docs/open-source/getting-started/deploy-OSS.mdx index a2c84c7db8..8997f2a22b 100644 --- a/website/docs/open-source/getting-started/deploy-OSS.mdx +++ b/website/docs/open-source/getting-started/deploy-OSS.mdx @@ -140,10 +140,13 @@ To resume updates, go back to the details page, click the resume button, and aft ## Delete Podinfo -To delete Podinfo in the GitOps way, run this command: +To delete Podinfo in the GitOps way, run this command from the root of your working directory: ``` -flux/git cmd + rm ./clusters/management/podinfo-kustomization.yaml + rm ./clusters/management/podinfo-source.yaml + git add -A && git commit -m "Remove podinfo kustomization and source" + git push ``` ## Complete!