From 72d3eb15e01dca43e80c83a0d4b8a9c1788bdea3 Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Wed, 14 Apr 2021 19:26:42 -0700 Subject: [PATCH] Update remoteBuild.md --- examples/remoteBuild.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/remoteBuild.md b/examples/remoteBuild.md index f9158507f..446c0abcf 100644 --- a/examples/remoteBuild.md +++ b/examples/remoteBuild.md @@ -82,23 +82,17 @@ Here are some example urls ``` DEMO_HOME=$(mktemp -d) -cat <$DEMO_HOME/kustomization.yaml +cat <<'EOF' >$DEMO_HOME/kustomization.yaml resources: - # a repo with a root level kustomization.yaml - github.com/Liujingfang1/mysql - # a repo with a root level kustomization.yaml on branch test - github.com/Liujingfang1/mysql?ref=test - # a subdirectory in a repo on branch repoUrl2 - github.com/Liujingfang1/kustomize/examples/helloWorld?ref=repoUrl2 - # a subdirectory in a repo on commit `7050a45134e9848fca214ad7e7007e96e5042c03` - github.com/Liujingfang1/kustomize/examples/helloWorld?ref=7050a45134e9848fca214ad7e7007e96e5042c03 - # a subdirectory in a remote archive - https://github.com/kustless/kustomize-examples/archive/master.zip//kustomize-examples-master - EOF ```