Skip to content

Commit 852739c

Browse files
authored
Merge pull request #5265 from rodrigc/update-remote-example
doc: update example to use tag v3.3.1
2 parents ace2d53 + bee2e5f commit 852739c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/remoteBuild.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ following query string parameters can also be specified:
1919
submodules or not
2020

2121
For example,
22-
`https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6`
23-
will essentially clone the git repo via HTTPS, checkout `v1.0.6` and run
22+
`https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?timeout=120&ref=v3.3.1`
23+
will essentially clone the git repo via HTTPS, checkout `v3.3.1` and run
2424
`kustomize build` inside the `examples/multibases/dev` directory.
2525

2626
SSH clones are also supported either with `[email protected]:owner/repo` or
2727
`ssh://[email protected]/owner/repo` URLs.
2828

2929
`file:///` clones are supported. For
30-
example, `file:///path/to/repo//someSubdir?ref=v1.0.6`, references the absolute
30+
example, `file:///path/to/repo//someSubdir?ref=v3.3.1`, references the absolute
3131
path to the repo at `/path/to/repo`, and a kustomization directory
3232
at `someSubdir` within that repo. `//` to delimits the root of the repo.
3333
Kustomize will clone the repo to a temporary directory and do a clean checkout
@@ -48,7 +48,7 @@ one pod in the output:
4848

4949
<!-- @remoteOverlayBuild @testAgainstLatestRelease -->
5050
```
51-
target="https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?ref=v1.0.6"
51+
target="https://github.com/kubernetes-sigs/kustomize//examples/multibases/dev/?timeout=120&ref=v3.3.1"
5252
test 1 == \
5353
$(kustomize build $target | grep dev-myapp-pod | wc -l); \
5454
echo $?
@@ -60,7 +60,7 @@ someone who wants to send them all at the same time):
6060

6161
<!-- @remoteBuild @testAgainstLatestRelease -->
6262
```
63-
target="https://github.com/kubernetes-sigs/kustomize//examples/multibases?ref=v1.0.6"
63+
target="https://github.com/kubernetes-sigs/kustomize//examples/multibases?timeout=120&ref=v3.3.1"
6464
test 3 == \
6565
$(kustomize build $target | grep cluster-a-.*-myapp-pod | wc -l); \
6666
echo $?
@@ -74,7 +74,7 @@ DEMO_HOME=$(mktemp -d)
7474
7575
cat <<EOF >$DEMO_HOME/kustomization.yaml
7676
resources:
77-
- https://github.com/kubernetes-sigs/kustomize//examples/multibases?ref=v1.0.6
77+
- https://github.com/kubernetes-sigs/kustomize//examples/multibases?timeout=120&ref=v3.3.1
7878
namePrefix: remote-
7979
EOF
8080
```

0 commit comments

Comments
 (0)