Silence vagrant progress output

Add --no-tty flag to all `vagrant up` commands to silence the printing of box loading progress

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
This commit is contained in:
Brad Davidson
2025-04-08 20:47:00 +00:00
committed by Brad Davidson
parent 9deef77eef
commit 08c6c7423b
4 changed files with 8 additions and 8 deletions

View File

@@ -57,7 +57,7 @@ jobs:
name: k3s
path: tests/install/${{ matrix.vm }}
- name: "Vagrant Up"
run: vagrant up --no-provision
run: vagrant up --no-tty --no-provision
- name: "Upload k3s binary to VM"
run: |
chmod +x k3s

View File

@@ -39,7 +39,7 @@ jobs:
- name: "Vagrant Plugin(s)"
run: vagrant plugin install vagrant-k3s vagrant-reload
- name: "Vagrant Up ⏩ Install K3s"
run: vagrant up
run: vagrant up --no-tty
- name: "⏳ Node"
run: vagrant provision --provision-with=k3s-wait-for-node
- name: "⏳ CoreDNS"
@@ -56,4 +56,4 @@ jobs:
- name: "k3s-status"
run: vagrant provision --provision-with=k3s-status
- name: "k3s-procps"
run: vagrant provision --provision-with=k3s-procps
run: vagrant provision --provision-with=k3s-procps