initial
Some checks failed
Infrastructure / Check infrastructure definitions (pull_request) Failing after 1m31s

This commit is contained in:
2023-08-28 23:59:57 +01:00
parent 81eb9300fb
commit c918e5761c
3 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
- name: Proxmox test-vm
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
node: pve
tasks:
- name: Create test-vm
community.general.proxmox_kvm:
name: test-vm
node: pve
- name: Update test-vm
community.general.proxmox_kvm:
cpu: x86-64-v3
memory: 2048
cores: 3
update: true
- name: Start test-vm
community.general.proxmox_kvm:
state: started