File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 19
19
BRANCH : ${{ github.base_ref }}
20
20
jobs :
21
21
build-and-test-image :
22
- runs-on : ubuntu-24.04
22
+ runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v4
25
25
- name : Generate Tag
38
38
39
39
with :
40
40
node_image : " kindest/node:v1.27.11"
41
+ - name : Remove AppArmor profile for mysql in KinD on GHA # https://github.com/kubeflow/manifests/issues/2507
42
+ run : |
43
+ set -x
44
+ sudo apt install apparmor-utils
45
+ sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
41
46
- name : Load Local Registry Test Image
42
47
env :
43
48
IMG : " ${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}"
Original file line number Diff line number Diff line change 30
30
BRANCH : ${{ github.base_ref }}
31
31
jobs :
32
32
build-and-test-csi-image :
33
- runs-on : ubuntu-24.04
33
+ runs-on : ubuntu-latest
34
34
steps :
35
35
- uses : actions/checkout@v4
36
36
65
65
with :
66
66
node_image : " kindest/node:v1.27.11"
67
67
68
+ - name : Remove AppArmor profile for mysql in KinD on GHA # https://github.com/kubeflow/manifests/issues/2507
69
+ run : |
70
+ set -x
71
+ sudo apt install apparmor-utils
72
+ sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
73
+
68
74
- name : Install kustomize
69
75
run : ./test/scripts/install_kustomize.sh
70
76
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ jobs:
114
114
115
115
test :
116
116
name : Test against Py ${{ matrix.python }} and K8s ${{ matrix.kubernetes-version }}
117
- runs-on : ubuntu-24.04
117
+ runs-on : ubuntu-latest
118
118
strategy :
119
119
fail-fast : false
120
120
matrix :
@@ -194,6 +194,11 @@ jobs:
194
194
node_image : kindest/node:${{ matrix.kubernetes-version }}
195
195
cluster_name : chart-testing-py-${{ matrix.python }}
196
196
kubectl_version : ${{ matrix.kubernetes-version }}
197
+ - name : Remove AppArmor profile for mysql in KinD on GHA # https://github.com/kubeflow/manifests/issues/2507
198
+ run : |
199
+ set -x
200
+ sudo apt install apparmor-utils
201
+ sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
197
202
- name : Load Local Registry Test Image
198
203
env :
199
204
IMG : " ${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}"
You can’t perform that action at this time.
0 commit comments