Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 573afc50a4 | |||
| 6dab1dccd9 |
@@ -1,5 +1,8 @@
|
||||
# Home Infrastructure
|
||||
|
||||
An Ansible + OpenTofu project for installing a minimal Kubernetes installation
|
||||
to bare-metal and virtual machines.
|
||||
|
||||
## Quick Start
|
||||
|
||||
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
|
||||
+1
@@ -3,5 +3,6 @@ ansible_become_exe: sudo.ws
|
||||
ansible_user: kolibri
|
||||
vip_interface: eno1
|
||||
vip_address: 10.0.0.200
|
||||
cluster_name: hive
|
||||
cluster_pod_subnet: 172.16.0.0/16
|
||||
cluster_service_subnet: 10.96.0.0/16
|
||||
@@ -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
|
||||
kind: ClusterConfiguration
|
||||
clusterName: aeon
|
||||
clusterName: "{{ cluster_name }}"
|
||||
controlPlaneEndpoint: "{{ vip_address }}"
|
||||
networking:
|
||||
podSubnet: "{{ cluster_pod_subnet }}"
|
||||
|
||||
Reference in New Issue
Block a user