Compare commits

..

No commits in common. "68eb12d2fe239e8e12ec2ded96abf01460d5002b" and "06c2228bd10283cc8f10cf568c025facef1aeae6" have entirely different histories.

3 changed files with 29 additions and 9 deletions

View File

@ -55,7 +55,6 @@ 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,8 +0,0 @@
# KovalHome automations
This repository contains any automations used in deploying *.koval.net services.
## Infra(structure)
All 'managed' infrastructure is deployed and provisioned with [Ansible](https://www.ansible.com/).
However, some 'unmanaged' (manually managed) resources also exist - primarily everything required for this repository to work (I don't want to make a dependency loop).

View File

@ -0,0 +1,29 @@
- 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