ansible-kubernetes-hetzner/vars/k8s_cluster/system/debian.yml

20 lines
712 B
YAML

######################################
# System vars for Linux Systems #
######################################
# ToDo: Linux base hardening
# Nameserver IPv4 Addresses
# /etc/resolv.conf
#ns1: '8.8.8.8'
#ns2: '4.4.4.4'
# package versions
k8s_pip_version: '25.3.0'
# Necessary System packages we need to intall
# ToDo: Pin packages to fix version; test split string
# ToDo: descripe version split
sys_packages: [ 'curl', 'nano', 'python3', 'python3-pip', 'htop', 'lsb-release', 'git' ]
k8s_sys_packages: [ 'open-iscsi', 'apt-transport-https', 'ca-certificates', 'gnupg' ]
pip_packages: ['PyYAML', 'jmespath', 'kubernetes>={{ k8s_pip_version }},<{{ (k8s_pip_version | string).split(".")[0] | int + 1 }}']