Skip to content

Commit

Permalink
kustomize 5.4.3 and documentation updates
Browse files Browse the repository at this point in the history
Signed-off-by: juliusvonkohout <[email protected]>
  • Loading branch information
juliusvonkohout committed Dec 3, 2024
1 parent 35e2da4 commit 9d8fca0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ For more troubleshooting info also check out https://cert-manager.io/docs/troubl

Istio is used by most Kubeflow components to secure their traffic, enforce
network authorization and implement routing policies.
If you use Cilium CNI on your cluster, you have to configure it properly for Istio as shown [here](https://docs.cilium.io/en/latest/network/servicemesh/istio/), otherwise you will get RBAC access denied on the central dashboard.


Install Istio:

Expand Down
4 changes: 2 additions & 2 deletions apps/pipeline/upstream/hack/presubmit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ PATH="$TMP:$PATH"
pushd "${TMP}"

# Install kustomize
KUSTOMIZE_VERSION=5.2.1
# Reference: https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.2.1
KUSTOMIZE_VERSION=5.4.3
# Reference: https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.4.3
curl -s -LO "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_linux_amd64.tar.gz"
tar -xzf kustomize_v${KUSTOMIZE_VERSION}_linux_amd64.tar.gz
chmod +x kustomize
Expand Down
2 changes: 1 addition & 1 deletion contrib/ray/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TODO

# Requirements
* Dependencies
* `kustomize`: v5.2.1+ (Kubeflow manifest is sensitive to `kustomize` version.)
* `kustomize`: v5.4.3+ (Kubeflow manifest is sensitive to `kustomize` version.)
* `Kubernetes`: v1.29+

* Computing resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ nodes:

echo "Install Kustomize ..."
{
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
curl --silent --location --remote-name "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz"
tar -xzvf kustomize_v5.4.3_linux_amd64.tar.gz
chmod a+x kustomize
sudo mv kustomize /usr/local/bin/kustomize
} || { echo "Failed to install Kustomize"; exit 1; }
4 changes: 2 additions & 2 deletions tests/gh-actions/install_kustomize.sh
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.2.1/kustomize_v5.2.1_linux_amd64.tar.gz"
tar -xzvf kustomize_v5.2.1_linux_amd64.tar.gz
curl --silent --location --remote-name "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz"
tar -xzvf kustomize_v5.4.3_linux_amd64.tar.gz
chmod a+x kustomize
sudo mv kustomize /usr/local/bin/kustomize

0 comments on commit 9d8fca0

Please sign in to comment.