test: add vhd content test for node ca watcher static tag (#5049)

Co-authored-by: Mikolaj Umanski <mumanski@microsoft.com>
This commit is contained in:
Mikołaj Umański 2024-10-10 14:54:37 -07:00 коммит произвёл GitHub
Родитель e65ed75461
Коммит 08114327e8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -458,6 +458,7 @@ testCustomCAScriptExecutable() {
if [ "$permissions" != "755" ]; then
err $test "/opt/scripts/update_certs.sh has incorrect permissions"
fi
echo "$test:Finish"
}
@ -466,6 +467,16 @@ testCustomCATimerNotStarted() {
if [[ -n "$isUnitThere" ]]; then
err $test "Custom CA timer was loaded, but shouldn't be"
fi
echo "$test:Finish"
}
testCustomCATrustNodeCAWatcherRetagged() {
isStaticTagImageThere=$(crictl images list | grep 'aks-node-ca-watcher' | grep 'static')
if [[ -z "$isStaticTagImageThere" ]]; then
err $test "Expected to find Node CA Watcher with static tag on the node"
fi
echo "$test:Finish"
}
@ -1060,6 +1071,7 @@ testCloudInit $OS_SKU
# testImagesRetagged $CONTAINER_RUNTIME
testCustomCAScriptExecutable
testCustomCATimerNotStarted
testCustomCATrustNodeCAWatcherRetagged
testLoginDefs
testUserAdd
testNetworkSettings