Skip to content

Commit 914ff77

Browse files
kustomize 5.4.3 and documentation updates (#2929)
Signed-off-by: juliusvonkohout <[email protected]>
1 parent 35e2da4 commit 914ff77

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ For more troubleshooting info also check out https://cert-manager.io/docs/troubl
204204

205205
Istio is used by most Kubeflow components to secure their traffic, enforce
206206
network authorization and implement routing policies.
207+
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.
208+
207209

208210
Install Istio:
209211

apps/pipeline/upstream/hack/presubmit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ PATH="$TMP:$PATH"
2727
pushd "${TMP}"
2828

2929
# Install kustomize
30-
KUSTOMIZE_VERSION=5.2.1
31-
# Reference: https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.2.1
30+
KUSTOMIZE_VERSION=5.4.3
31+
# Reference: https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.4.3
3232
curl -s -LO "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_linux_amd64.tar.gz"
3333
tar -xzf kustomize_v${KUSTOMIZE_VERSION}_linux_amd64.tar.gz
3434
chmod +x kustomize

contrib/ray/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ TODO
2020

2121
# Requirements
2222
* Dependencies
23-
* `kustomize`: v5.2.1+ (Kubeflow manifest is sensitive to `kustomize` version.)
23+
* `kustomize`: v5.4.3+ (Kubeflow manifest is sensitive to `kustomize` version.)
2424
* `Kubernetes`: v1.29+
2525

2626
* Computing resources:

tests/gh-actions/install_KinD_create_KinD_cluster_install_kustomize.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ nodes:
5959

6060
echo "Install Kustomize ..."
6161
{
62-
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"
63-
tar -xzvf kustomize_v5.2.1_linux_amd64.tar.gz
62+
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"
63+
tar -xzvf kustomize_v5.4.3_linux_amd64.tar.gz
6464
chmod a+x kustomize
6565
sudo mv kustomize /usr/local/bin/kustomize
6666
} || { echo "Failed to install Kustomize"; exit 1; }

tests/gh-actions/install_kustomize.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -e
3-
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"
4-
tar -xzvf kustomize_v5.2.1_linux_amd64.tar.gz
3+
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"
4+
tar -xzvf kustomize_v5.4.3_linux_amd64.tar.gz
55
chmod a+x kustomize
66
sudo mv kustomize /usr/local/bin/kustomize

0 commit comments

Comments
 (0)