-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Update synchronize istio to include ztunnel support #3274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
google-oss-prow
merged 15 commits into
kubeflow:master
from
kunal-511:ztunnel-manifests-generation
Nov 18, 2025
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
569ce0a
Update synchronize istio to include ztunnel support
kunal-511 771f702
increase katib test timeout
kunal-511 a876b9a
revert katib test timeout
kunal-511 5f22620
Update error handling in free-disk-space.sh
juliusvonkohout 8cb492c
Update full_kubeflow_integration_test.yaml
juliusvonkohout 585c8bf
Update pipeline_test.yaml
juliusvonkohout a034b44
Upgrade checkout action from v4 to v5
juliusvonkohout 67d7831
Update checkout action version in pipeline test
juliusvonkohout b24a6e2
Make tests/free-disk-space.sh executable
juliusvonkohout 1d47ea7
Remove apt-get autoremove from cleanup script
juliusvonkohout 2a193df
Update GitHub Actions workflow for disk space management
juliusvonkohout 5df884c
Update katib_test.sh
juliusvonkohout b763c37
Upgrade checkout action and add disk space cleanup
juliusvonkohout 64ba9ca
already in https://github.com/kubeflow/manifests/blob/master/common/i…
juliusvonkohout da476c0
Merge branch 'ztunnel-manifests-generation' of https://github.com/kun…
juliusvonkohout File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -29,6 +29,3 @@ spec: | |
| global: | ||
| configValidation: true | ||
| istioNamespace: istio-system | ||
| proxy: | ||
| seccompProfile: | ||
| type: RuntimeDefault | ||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| #!/bin/bash | ||
| set -euxo pipefail | ||
|
|
||
| # This script frees up disk space on GitHub Actions runners. | ||
| # Several GHA workflows were failing with "no space left on device" errors. | ||
| # This script is only meant to run in GitHub Actions CI environment. | ||
|
|
||
| # Safety check: Only run on GitHub Actions | ||
| if [[ "${GITHUB_ACTIONS:-false}" != "true" ]]; then | ||
| echo "ERROR: This script is for GitHub Actions runners only!" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "=== Initial disk usage ===" | ||
| df -h | ||
|
|
||
| echo "=== Freeing up disk space ===" | ||
|
|
||
| # Remove large directories not needed for KFP tests | ||
| sudo rm -rf /usr/share/dotnet | ||
| sudo rm -rf /opt/ghc | ||
| sudo rm -rf /usr/local/share/boost | ||
| sudo rm -rf /usr/local/lib/android | ||
| sudo rm -rf /usr/local/.ghcup | ||
| sudo rm -rf /usr/share/swift | ||
|
|
||
| # Selectively remove large tools from hostedtoolcache while preserving Go, Node, Python | ||
| # Remove these specific large tools that aren't needed for KFP tests | ||
| sudo rm -rf /opt/hostedtoolcache/CodeQL || true | ||
| sudo rm -rf /opt/hostedtoolcache/Java_* || true | ||
| sudo rm -rf /opt/hostedtoolcache/Ruby || true | ||
| sudo rm -rf /opt/hostedtoolcache/PyPy || true | ||
| sudo rm -rf /opt/hostedtoolcache/boost || true | ||
|
|
||
| # Clean package manager | ||
| sudo apt-get autoclean | ||
|
|
||
| # Clean Docker | ||
| docker system prune -af --volumes | ||
| docker image prune -af | ||
|
|
||
| # Clean containerd | ||
| sudo systemctl stop containerd || true | ||
| sudo rm -rf /var/lib/containerd/io.containerd.snapshotter.v1.overlayfs/snapshots/* || true | ||
| sudo systemctl start containerd || true | ||
|
|
||
| echo "=== Final disk usage ===" | ||
| df -h |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.