-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Akihiro Suda <[email protected]>
- Loading branch information
1 parent
27506e8
commit ec0eeb6
Showing
1 changed file
with
5 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,11 @@ jobs: | |
- run: sudo modprobe vxlan | ||
- uses: actions/checkout@v3 | ||
- uses: canonical/[email protected] | ||
- name: "Relax disk pressure limit" | ||
run: | | ||
set -x | ||
sudo snap install yq | ||
yq -i 'select(.kind=="KubeletConfiguration").evictionHard."imagefs.available"="3Gi"' kubeadm-config.yaml | ||
- run: ./hack/create-cluster-lxd.sh | ||
- run: kubectl taint nodes --all node-role.kubernetes.io/control-plane- || true | ||
- run: ./hack/test-smoke.sh | ||
|