parent
81eb9300fb
commit
7db11c6506
|
@ -0,0 +1,65 @@
|
|||
name: Infrastructure
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- infra/**
|
||||
paths:
|
||||
- infra/**-playbook.yaml
|
||||
- .github/workflows/infra.yaml
|
||||
fork:
|
||||
|
||||
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: |
|
||||
pip3 install -r requirements.txt
|
||||
ansible-galaxy collection install community.general
|
||||
|
||||
- name: Check modified playbooks
|
||||
run: |
|
||||
find . -wholename "*/infra/*-playbook.yaml" -type f -exec ansible-playbook --inventory ./inventory --check {} \;
|
||||
deploy:
|
||||
name: Deploy modified infrastructure
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.11"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip3 install -r requirements.txt
|
||||
ansible-galaxy collection install community.general
|
||||
|
||||
- name: Get changed files
|
||||
id: files
|
||||
uses: tj-actions/changed-files@v38
|
||||
|
||||
- name: Run changed playbooks
|
||||
run: |
|
||||
for file in ${{ steps.files.outputs.all_changed_files }}; do
|
||||
ansible-playbook --inventory ./inventory "$file"
|
||||
done
|
|
@ -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
|
|
@ -0,0 +1,13 @@
|
|||
proxmox:
|
||||
children:
|
||||
kovalhome:
|
||||
children:
|
||||
nodes:
|
||||
hosts:
|
||||
pve.mgmt.home.local.koval.net:
|
||||
pve2.mgmt.home.local.koval.net:
|
||||
managed:
|
||||
hosts:
|
||||
test-vm.mgmt.home.local.koval.net:
|
||||
unmanaged:
|
||||
hosts:
|
Loading…
Reference in New Issue