initial
Infrastructure / Check infrastructure definitions (pull_request) Failing after 1m31s Details

This commit is contained in:
Gleb Koval 2023-08-28 23:59:57 +01:00
parent 81eb9300fb
commit c918e5761c
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
3 changed files with 81 additions and 0 deletions

45
.github/workflows/infra.yaml vendored Normal file
View File

@ -0,0 +1,45 @@
name: Infrastructure
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- infra/**
paths:
- infra/**-playbook.yaml
- .github/workflows/infra.yaml
jobs:
check:
name: Check infrastructure definitions
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: -|
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
ansible-galaxy collection install community.general
- name: Get changed playbooks
id: changed-playbooks
uses: tj-actions/changed-files@v38
with:
files: infra/**-playbook.yaml
- name: Check modified playbooks
run: -|
for file in ${{ steps.changed-playbooks.outputs.all_changed_files }}; do
ansible --inventory ./inventory --check "$file"
done

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

12
inventory/proxmox.yaml Normal file
View File

@ -0,0 +1,12 @@
proxmox:
children:
kovalhome:
children:
nodes:
hosts:
pve.mgmt.home.local.koval.net:
pve2.mgmt.home.local.koval.net:
managed:
hosts:
unmanaged:
hosts: