From 9778f867b51f7d9e416a0b8ab31be9863e81f9c0 Mon Sep 17 00:00:00 2001 From: Scott Numamoto Date: Sat, 12 Oct 2019 00:59:59 -0700 Subject: [PATCH] Update broken URL in Exec Plugin Tutorial - link created in the scripts of Exec plugin on linux in 60 seconds to download the kustomize executable does not work - used the [releases page](https://github.com/kubernetes-sigs/kustomize/releases/tag/v3.0.0) to fix --- docs/plugins/execPluginGuidedExample.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/execPluginGuidedExample.md b/docs/plugins/execPluginGuidedExample.md index db0722da8..146a2fbfe 100644 --- a/docs/plugins/execPluginGuidedExample.md +++ b/docs/plugins/execPluginGuidedExample.md @@ -201,7 +201,7 @@ chmod a+x $MY_PLUGIN_DIR/SillyConfigMapGenerator ``` mkdir -p $DEMO/bin gh=https://github.com/kubernetes-sigs/kustomize/releases/download -url=$gh/v3.0.0-pre/kustomize_3.0.0-pre_linux_amd64 +url=$gh/v3.0.0/kustomize_3.0.0_linux_amd64 curl -o $DEMO/bin/kustomize -L $url chmod u+x $DEMO/bin/kustomize ```