Begin setting up laptop

This commit is contained in:
2025-03-25 00:55:59 -05:00
parent beef4e89ed
commit 8ae36cdce2
4 changed files with 872 additions and 11 deletions

View File

@@ -1,15 +1,30 @@
---
- name: Install all software on infra01
hosts: infra01
connection: local
gather_facts: true
become: yes
collections:
- somaz94.ansible_k8s_iac_tool
tasks:
# - Update all packages
# - Install ansible-core
# - Copy .vault_pass.txt from laptop and set env variable
# - Clone git repo
# - Install ansible required packages
- name: Install ansible-core
ansible.builtin.package:
name: ansible-core
state: present
become: true
# - name: Clone Git repository
# ansible.builtin.git:
# repo: "https://github.com/rblundon/homelab.git"
# dest: ~
# version: deploy-hub-cluster #main
# become: true
roles:
- install_kustomize
tasks: