remove test-vm-2 and sort files

This commit is contained in:
Gleb Koval 2023-09-03 00:52:40 +01:00
parent 06c2228bd1
commit 749071c695
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
2 changed files with 1 additions and 29 deletions

View File

@ -55,6 +55,7 @@ jobs:
else
export TO_RUN="$(find . -wholename './infra/*-playbook.yaml' -type f)"
fi
export TO_RUN="$( echo -n $TO_RUN | tr ' ' '\n' | sort | tr '\n' ' ' )" # run things in order :)
echo "will run playbooks: $TO_RUN"
echo "to_run=$TO_RUN" >> "$GITHUB_OUTPUT"

View File

@ -1,29 +0,0 @@
- name: Proxmox test-vm-2
hosts: localhost
module_defaults:
community.general.proxmox_kvm:
api_user: "{{ lookup('ansible.builtin.env', 'PROXMOX_TOKEN_ID') | regex_replace('!.*') }}"
api_host: "{{ lookup('ansible.builtin.env', 'PROXMOX_HOST' ) }}"
api_token_id: "{{ lookup('ansible.builtin.env', 'PROXMOX_TOKEN_ID') | regex_replace('.*!') }}"
api_token_secret: "{{ lookup('ansible.builtin.env', 'PROXMOX_TOKEN_SECRET') }}"
name: test-vm-2
node: pve
tasks:
- name: Create test-vm-2
community.general.proxmox_kvm:
tags:
- managed
- name: Wait for test-vm-2 to exist
community.general.proxmox_kvm:
state: current
retries: 30
delay: 10
- name: Update test-vm-2
community.general.proxmox_kvm:
cpu: x86-64-v3
memory: 2048
cores: 5
update: true
- name: Start test-vm-2
community.general.proxmox_kvm:
state: restarted