mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2025-08-15 01:32:24 +00:00
12 lines
541 B
YAML
12 lines
541 B
YAML
|
---
|
||
|
# Generate Machine Configurations. This is using the qemu agent as per: https://www.talos.dev/v1.7/talos-guides/install/virtualized-platforms/proxmox/
|
||
|
- name: Apply config to first worker
|
||
|
ansible.builtin.command:
|
||
|
cmd: talosctl apply-config --insecure --nodes {{ worker_1 }} --file {{ config_directory }}/worker.yaml
|
||
|
changed_when: true
|
||
|
|
||
|
- name: Apply config to second worker
|
||
|
ansible.builtin.command:
|
||
|
cmd: talosctl apply-config --insecure --nodes {{ worker_2 }} --file {{ config_directory }}/worker.yaml
|
||
|
changed_when: true
|