feat: Add gcloud pipeline scripts and enhance k3s VM startup with additional checks and installations

This commit is contained in:
jon brookes 2025-09-30 14:36:44 +01:00
parent 31af97ced8
commit ff815fa82c
6 changed files with 138 additions and 4 deletions

View file

@ -0,0 +1,29 @@
[
{
"name": "run pre-flight checks",
"function": "RunCommand",
"params": [
"./scripts/pre-flight-checks.sh"
],
"retryCount": 0,
"shouldAbort": true
},
{
"name": "list gcloud infrastructure",
"function": "RunCommand",
"params": [
"./scripts/list_gloud_infra.sh"
],
"retryCount": 0,
"shouldAbort": true
},
{
"name": "run tofu",
"function": "RunCommand",
"params": [
"./scripts/run_tofu.sh"
],
"retryCount": 0,
"shouldAbort": true
}
]