Compare commits

..

2 Commits

Author SHA1 Message Date
JamesAllenby 573afc50a4 doc: readme update 2026-07-28 16:37:33 +01:00
JamesAllenby 6dab1dccd9 chore: rename bare metal to hive 2026-07-28 16:37:20 +01:00
5 changed files with 13 additions and 9 deletions
+3
View File
@@ -1,5 +1,8 @@
# Home Infrastructure # Home Infrastructure
An Ansible + OpenTofu project for installing a minimal Kubernetes installation
to bare-metal and virtual machines.
## Quick Start ## Quick Start
Get started with a local Kubernetes cluster which can be used to design and test Get started with a local Kubernetes cluster which can be used to design and test
@@ -1,8 +0,0 @@
masters:
hosts:
vineta:
ansible_host: 10.0.0.201
rotfront:
ansible_host: 10.0.0.202
leng:
ansible_host: 10.0.0.203
@@ -3,5 +3,6 @@ ansible_become_exe: sudo.ws
ansible_user: kolibri ansible_user: kolibri
vip_interface: eno1 vip_interface: eno1
vip_address: 10.0.0.200 vip_address: 10.0.0.200
cluster_name: hive
cluster_pod_subnet: 172.16.0.0/16 cluster_pod_subnet: 172.16.0.0/16
cluster_service_subnet: 10.96.0.0/16 cluster_service_subnet: 10.96.0.0/16
+8
View File
@@ -0,0 +1,8 @@
masters:
hosts:
vineta:
ansible_host: vineta.local
rotfront:
ansible_host: rotfront.local
leng:
ansible_host: leng.local
@@ -4,7 +4,7 @@ kind: InitConfiguration
--- ---
apiVersion: kubeadm.k8s.io/v1beta4 apiVersion: kubeadm.k8s.io/v1beta4
kind: ClusterConfiguration kind: ClusterConfiguration
clusterName: aeon clusterName: "{{ cluster_name }}"
controlPlaneEndpoint: "{{ vip_address }}" controlPlaneEndpoint: "{{ vip_address }}"
networking: networking:
podSubnet: "{{ cluster_pod_subnet }}" podSubnet: "{{ cluster_pod_subnet }}"