@@ -19,15 +19,15 @@ following query string parameters can also be specified:
19
19
submodules or not
20
20
21
21
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
24
24
` kustomize build ` inside the ` examples/multibases/dev ` directory.
25
25
26
26
SSH clones are also supported either with
` [email protected] :owner/repo` or
27
27
` ssh://[email protected] /owner/repo ` URLs.
28
28
29
29
` 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
31
31
path to the repo at ` /path/to/repo ` , and a kustomization directory
32
32
at ` someSubdir ` within that repo. ` // ` to delimits the root of the repo.
33
33
Kustomize will clone the repo to a temporary directory and do a clean checkout
@@ -48,7 +48,7 @@ one pod in the output:
48
48
49
49
<!-- @remoteOverlayBuild @testAgainstLatestRelease -->
50
50
```
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 "
52
52
test 1 == \
53
53
$(kustomize build $target | grep dev-myapp-pod | wc -l); \
54
54
echo $?
@@ -60,7 +60,7 @@ someone who wants to send them all at the same time):
60
60
61
61
<!-- @remoteBuild @testAgainstLatestRelease -->
62
62
```
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 "
64
64
test 3 == \
65
65
$(kustomize build $target | grep cluster-a-.*-myapp-pod | wc -l); \
66
66
echo $?
@@ -74,7 +74,7 @@ DEMO_HOME=$(mktemp -d)
74
74
75
75
cat <<EOF >$DEMO_HOME/kustomization.yaml
76
76
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
78
78
namePrefix: remote-
79
79
EOF
80
80
```
0 commit comments