From 647731a6ada93e067d607c763bc6f33d7982e9ee Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Tue, 7 Jan 2020 13:57:30 -0800 Subject: [PATCH] Update execPluginGuidedExample.md --- docs/plugins/execPluginGuidedExample.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/plugins/execPluginGuidedExample.md b/docs/plugins/execPluginGuidedExample.md index 27791b4ae..8b713d87a 100644 --- a/docs/plugins/execPluginGuidedExample.md +++ b/docs/plugins/execPluginGuidedExample.md @@ -196,14 +196,13 @@ By definition, an _exec_ plugin must be executable: chmod a+x $MY_PLUGIN_DIR/SillyConfigMapGenerator ``` -## Download kustomize 3.0.0 +## Install kustomize +Per the [instructions](../../INSTALL.md): ``` -mkdir -p $DEMO/bin -gh=https://github.com/kubernetes-sigs/kustomize/releases/download -url=$gh/v3.0.0/kustomize_3.0.0_linux_amd64.tar.gz -curl -o $DEMO/bin/kustomize -L $url -chmod u+x $DEMO/bin/kustomize +curl -s "https://raw.githubusercontent.com/\ +kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash +mv kustomize $DEMO/bin ``` ## Review the layout