From bee2e5f50cd4d48eea9960f454c16fb9324289b3 Mon Sep 17 00:00:00 2001 From: Craig Rodrigues Date: Thu, 10 Aug 2023 20:47:33 -0700 Subject: [PATCH] doc: update example to use tag v3.3.1 Signed-off-by: Craig Rodrigues --- examples/remoteBuild.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/remoteBuild.md b/examples/remoteBuild.md index 315f346752..f4baaf210f 100644 --- a/examples/remoteBuild.md +++ b/examples/remoteBuild.md @@ -19,15 +19,15 @@ following query string parameters can also be specified: submodules or not For example, -`https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6` -will essentially clone the git repo via HTTPS, checkout `v1.0.6` and run +`https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?timeout=120&ref=v3.3.1` +will essentially clone the git repo via HTTPS, checkout `v3.3.1` and run `kustomize build` inside the `examples/multibases/dev` directory. SSH clones are also supported either with `git@github.com:owner/repo` or `ssh://git@github.com/owner/repo` URLs. `file:///` clones are supported. For -example, `file:///path/to/repo//someSubdir?ref=v1.0.6`, references the absolute +example, `file:///path/to/repo//someSubdir?ref=v3.3.1`, references the absolute path to the repo at `/path/to/repo`, and a kustomization directory at `someSubdir` within that repo. `//` to delimits the root of the repo. Kustomize will clone the repo to a temporary directory and do a clean checkout @@ -48,7 +48,7 @@ one pod in the output: ``` -target="https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6" +target="https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?timeout=120&ref=v3.3.1" test 1 == \ $(kustomize build $target | grep dev-myapp-pod | wc -l); \ echo $? @@ -60,7 +60,7 @@ someone who wants to send them all at the same time): ``` -target="https://github.com/kubernetes-sigs/kustomize//examples/multibases?ref=v1.0.6" +target="https://github.com/kubernetes-sigs/kustomize//examples/multibases?timeout=120&ref=v3.3.1" test 3 == \ $(kustomize build $target | grep cluster-a-.*-myapp-pod | wc -l); \ echo $? @@ -74,7 +74,7 @@ DEMO_HOME=$(mktemp -d) cat <$DEMO_HOME/kustomization.yaml resources: -- https://github.com/kubernetes-sigs/kustomize//examples/multibases?ref=v1.0.6 +- https://github.com/kubernetes-sigs/kustomize//examples/multibases?timeout=120&ref=v3.3.1 namePrefix: remote- EOF ```