-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update install_kustomize.sh Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> * Update README.md Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> * Update pull_request_template.md Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> * deprecate old kustomize Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> * update readme.md Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> * update readme and Go to the pipelines version Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> --------- Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com> Signed-off-by: Anders Bennedsgaard <abbennedsgaard@gmail.com>
- Loading branch information
1 parent
9b71fc8
commit d41c25d
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/kubeflow/manifests | ||
|
||
go 1.12 | ||
go 1.20 | ||
|
||
require sigs.k8s.io/kustomize/kustomize/v3 v3.2.1 | ||
require sigs.k8s.io/kustomize/kustomize/v3 v5.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
set -e | ||
curl --silent --location --remote-name "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.0.3/kustomize_v5.0.3_linux_amd64.tar.gz" | ||
tar -xzvf kustomize_v5.0.3_linux_amd64.tar.gz | ||
curl --silent --location --remote-name "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.2.1/kustomize_v5.2.1_linux_amd64.tar.gz" | ||
tar -xzvf kustomize_v5.2.1_linux_amd64.tar.gz | ||
chmod a+x kustomize | ||
sudo mv kustomize /usr/local/bin/kustomize |