summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ch-k8s-master.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-05-07 22:45:49 +0200
committerChristian Pointner <equinox@spreadspace.org>2022-05-07 23:53:19 +0200
commitc09b07327b688a6a47f523a15c1a5c29d4f476d0 (patch)
tree6c243d60a3fb142c582761f1baab1c00f7081342 /inventory/host_vars/ch-k8s-master.yml
parentcosmetic changes (diff)
k8s: rename masters to control-plane nodes
Diffstat (limited to 'inventory/host_vars/ch-k8s-master.yml')
-rw-r--r--inventory/host_vars/ch-k8s-master.yml72
1 files changed, 0 insertions, 72 deletions
diff --git a/inventory/host_vars/ch-k8s-master.yml b/inventory/host_vars/ch-k8s-master.yml
deleted file mode 100644
index 63723000..00000000
--- a/inventory/host_vars/ch-k8s-master.yml
+++ /dev/null
@@ -1,72 +0,0 @@
----
-install_jumphost: ch-jump
-
-install:
- vm:
- memory: 4G
- numcpus: 4
- autostart: True
- disks:
- primary: /dev/sda
- scsi:
- sda:
- type: zfs
- name: root
- size: 20g
- properties:
- 'syncoid:sync': 'false'
- system_lvm:
- volumes:
- - name: root
- size: 3G
- filesystem: ext4
- mountpoint: /
- - name: var
- size: 1280M
- filesystem: ext4
- mountpoint: /var
- - name: var+log
- size: 768M
- filesystem: ext4
- mountpoint: /var/log
- mount_options:
- - noatime
- - nodev
- - noexec
- interfaces:
- - bridge: br-svc
- name: svc0
-
-network:
- nameservers: "{{ network_zones.svc.dns }}"
- domain: "{{ host_domain }}"
- systemd_link:
- interfaces: "{{ install.interfaces }}"
- primary: &_network_primary_
- name: svc0
- address: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
- gateway: "{{ network_zones.svc.gateway }}"
- static_routes:
- - destination: "{{ network_zones.lan.prefix }}"
- gateway: "{{ network_zones.svc.prefix | ipaddr(network_zones.svc.offsets['ch-gw-lan']) | ipaddr('address') }}"
- interfaces:
- - *_network_primary_
-
-
-spreadspace_apt_repo_components:
- - container
-
-
-containerd_storage:
- type: lvm
- vg: "{{ host_name }}"
- lv: containerd
- size: 7G
- fs: ext4
-
-kubelet_storage:
- type: lvm
- vg: "{{ host_name }}"
- lv: kubelet
- size: 5G
- fs: ext4