From 8e35ec0fe260fd66509692d6f65c8cd2bcbf613c Mon Sep 17 00:00:00 2001 From: John Bohannon Date: Tue, 15 Dec 2020 12:57:19 -0500 Subject: [PATCH] Remove kustomize example --- .../guides/deploying-to-google-kubernetes-engine.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/content/actions/guides/deploying-to-google-kubernetes-engine.md b/content/actions/guides/deploying-to-google-kubernetes-engine.md index 451596561c..ca53a8a26f 100644 --- a/content/actions/guides/deploying-to-google-kubernetes-engine.md +++ b/content/actions/guides/deploying-to-google-kubernetes-engine.md @@ -68,16 +68,7 @@ export GKE_SA_KEY=$(cat key.json | base64) {% endraw %} #### (Optional) Set up `kustomize` -Kustomize is an optional tool used for managing YAML specs. After [setting up](https://github.com/kubernetes-sigs/kustomize#usage) a kustomization file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`: - -{% raw %} -```bash{:copy} -kustomize edit set image \ -gcr.io/PROJECT_ID/IMAGE:TAG=gcr.io/$PROJECT_ID/$IMAGE:$GITHUB_SHA - -kustomize build . | kubectl apply -f - -``` -{% endraw %} +Kustomize is an optional tool used for managing YAML specs. After [setting up](https://github.com/kubernetes-sigs/kustomize#usage) a kustomization file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`. ### Workflow