File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,3 +27,12 @@ cp -rf $(pwd)/. ${TMP_PROJECT_PATH}
2727
2828echo ' Exporting temporary project path'
2929export TMP_PROJECT_PATH
30+
31+ echo ' Ensuring the manifests are in sync'
32+ if [[ -n $( git status --porcelain 2> /dev/null) ]]; then
33+ echo " ERROR: git tree state is not clean!"
34+ echo " Run ` make manifests` and commit those changes"
35+ git status
36+ git diff
37+ exit 1
38+ fi
Original file line number Diff line number Diff line change @@ -6,9 +6,15 @@ metadata:
66allowHostNetwork : true
77allowPrivilegedContainer : true
88allowHostDirVolumePlugin : true
9+ allowHostIPC : false
10+ allowHostPID : false
11+ allowHostPorts : false
12+ readOnlyRootFilesystem : false
913runAsUser :
1014 type : RunAsAny
1115seLinuxContext :
1216 type : RunAsAny
1317users :
1418 - system:serviceaccount:default:macvtap-cni
19+ volumes :
20+ - hostPath
You can’t perform that action at this time.
0 commit comments