This repository contains the configuration, scripts, and other goodies for building and managing my kubernetes clusters
Find a file
2022-02-01 17:05:06 -06:00
ansible Initial commit 2022-02-01 17:05:06 -06:00
readme.md Initial commit 2022-02-01 17:05:06 -06:00

Provision Machines

  • My nodes are Arch Linux machines on bare metal
    • Have python3 installed for Ansible
    • Need to be ssh-able from a workstation
  • Using Ansible
    • Setup Ansible inventory under the key homek8s
      homek8s:
        children:
          controllers:
          hybrid:
            hosts:
              root@kubeworker1:
          workers:
      
    • Test with ansible homek8s -m ping or groups like this ansible homek8s:hybrid -m ping