-
Notifications
You must be signed in to change notification settings - Fork 2
/
inventory
36 lines (32 loc) · 1.36 KB
/
inventory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# if you don't need a loadbalancer, please modify the playbook site.yml according the comments
[loadbalancer]
# g8s-haproxy.pfpk.lan ansible_host=192.168.50.111
[master]
g8s-m1.pfpk.lan ansible_host=192.168.64.100
g8s-m2.pfpk.lan ansible_host=192.168.64.151
g8s-m3.pfpk.lan ansible_host=192.168.64.156
[worker]
g8s-m4.pfpk.lan ansible_host=192.168.64.73
[all:vars]
# Give your cluster a reasonable name
clustername = "g8s-pfpk-lan"
# If you use an external loadbalancer define it here.
# The api_loadbalancer_port is optional
# api_loadbalancer = "agw-loadbalancer.internal.myorg.at"
# api_loadbalancer_port = 5443
# only set development cluster = true if it is a development cluster
development_cluster = True
# NTP servers
ntp_servers = ["ts1.aco.net", "europe.pool.ntp.org"]
# which Kubernetes version are we using?
# You can get a version list here: https://kubernetes.io/releases/
# Every version from 1.28.0 is supported ;-)
k8s_version = 1.29.5
# CIDR address for k8s internal network and cilium
k8s_cidr = 10.85.0.0/16
# CIDR address for k8s service network
k8s_svc_cidr = 10.86.0.0/16
# Cert-Manager config
# if the variable cert_manager_admin_mail is set, the rollout is establishing two
# letsencrypt ClusterIssuer: letsencrypt-staging and letsencrypt-prod (like mentioned in the upstream contour or cert-manager doc)
# cert_manager_admin_mail = "[email protected]"