--- /dev/null
+- name: Install k8s
+ hosts: malyna
+ vars:
+ ansible_become_method: doas
+ tasks:
+ - name: Enable br_netfilter kernel module
+ become: true
+ shell:
+ cmd: modprobe br_netfilter
+
+ - name: Enable br_netfilter kernel module on boot
+ become: true
+ lineinfile:
+ path: /etc/modules-load.d/k8s.conf
+ line: |
+ #!/bin/sh
+ mount --make-rshared /
+ insertbefore: BOF
+ create: true
+
+ - name: Enable ipv4 packetforwarding
+ become: true
+ shell:
+ cmd: sysctl net.ipv4.ip_forward=1
+
+ - name: Enable ipv4 packtetforwarding on boot
+ become: true
+ lineinfile:
+ path: /etc/sysctl.conf
+ line: net.ipv4.ip_forward = 1
+ create: true
+
+ - name: Update apk packages & cache
+ become: true
+ apk:
+ update_cache: true
+ name:
+ - cni-plugin-flannel
+ - cni-plugins
+ - flannel
+ - flannel-contrib-cni
+ - kubelet
+ - kubeadm
+ - kubectl
+ - containerd
+ - uuidgen
+ - nfs-utils
+
+ - name: Make root shared mount for prometheus
+ become: true
+ shell:
+ cmd: mount --make-rshared /
+
+ - name: Setup prometheus
+ become: true
+ shell:
+ cmd: |
+ echo "#!/bin/sh" > /etc/local.d/sharemetrics.start
+ echo "mount --make-rshared /" >> /etc/local.d/sharemetrics.start
+ chmod +x /etc/local.d/sharemetrics.start
+
+ - name: Add machine-id for compatibility
+ become: true
+ shell: uuidgen > /etc/machine-id
+
+ - name: Enable ntpd service
+ become: true
+ service:
+ name: ntpd
+ enabled: true
+ state: started
+
+ - name: Enable local service
+ become: true
+ service:
+ name: local
+ enabled: true
+
+ - name: Enable containerd service
+ become: true
+ service:
+ name: containerd
+ enabled: true
+ state: started
+
+ - name: Enable kublet service
+ become: true
+ service:
+ name: kublet
+ enabled: true
+ state: started
+
+ - name: Link flannel for comapatibility
+ become: true
+ shell:
+ cmd: ln -s /usr/libexec/cni/flannel-amd64 /usr/libexec/cni/flannel
+
+ - name: Enable net.bridge.bridge-nf-call-iptables
+ become: true
+ shell:
+ cmd: sysctl net.bridge.bridge-nf-call-iptables=1
+
+ - name: Enable net.bridge.bridge-nf-call-iptables on startup
+ become: true
+ lineinfile:
+ path: /etc/sysctl.conf
+ line: net.bridge.bridge-nf-call-iptables = 1
+ create: true
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file