- Update repo URLs from HTTPS placeholder to git@github.com:lazorgurl/homelab.git - Update container image refs from OWNER to lazorgurl - Set KUBECONFIG env in Taskfile - Fix kubeconfig-fetch.sh to auto-detect server IP from inventory - Fix Ansible: callback plugin, br_netfilter ordering, ssh service name
38 lines
641 B
YAML
38 lines
641 B
YAML
---
|
|
# Timezone
|
|
timezone: America/New_York
|
|
|
|
# NTP
|
|
ntp_servers:
|
|
- 0.ubuntu.pool.ntp.org
|
|
- 1.ubuntu.pool.ntp.org
|
|
|
|
# k3s
|
|
k3s_version: v1.31.4+k3s1
|
|
k3s_server_url: "https://{{ hostvars['nuc01']['ansible_host'] }}:6443"
|
|
k3s_token: "6eb228325963e313060505567ffc5620108f80b11288dc4c5a9960efada48cde"
|
|
|
|
# System packages
|
|
common_packages:
|
|
- curl
|
|
- wget
|
|
- git
|
|
- htop
|
|
- iotop
|
|
- net-tools
|
|
- unzip
|
|
- jq
|
|
- open-iscsi
|
|
- nfs-common
|
|
- cryptsetup
|
|
|
|
# Container runtime
|
|
containerd_config:
|
|
max_container_log_size: 10M
|
|
max_container_log_files: 3
|
|
|
|
# Network
|
|
cluster_cidr: 10.42.0.0/16
|
|
service_cidr: 10.43.0.0/16
|
|
cluster_dns: 10.43.0.10
|