update: enhance Vagrant setup with new scripts for node and workstation installation, and update provisioning to target specific VMs

This commit is contained in:
jon brookes 2025-08-16 11:52:28 +01:00
parent 5f448d7fc7
commit aa912d55df
6 changed files with 79 additions and 23 deletions

View file

@ -1,9 +1,31 @@
[
{
"name": "pre-requisties",
"name": "Create Vagrant nodes",
"function": "RunCommand",
"params": [
"./scripts/vagrant_check_prerequisites.sh"
"./scripts/install_vagrant_nodes.sh"
],
"retryCount": 0,
"shouldAbort": true
},
{
"name": "Configure Vagrant K3s",
"function": "RunCommand",
"params": [
"./scripts/configure_vagrant_k3s.sh"
],
"retryCount": 0,
"shouldAbort": true
},
{
"name": "Create Vagrant workstation",
"function": "RunCommand",
"params": [
"./scripts/install_vagrant_workstation.sh"
],
"retryCount": 0,
"shouldAbort": true