Add ingress-option

This commit is contained in:
Ruakij 2023-03-19 13:56:26 +01:00
parent e5920b3ddf
commit f9a859e95c
2 changed files with 6 additions and 2 deletions

View File

@ -19,3 +19,5 @@ kubernetes:
# One of [flannel, calico]
network_plugin: calico
# One of [traefik-ingress]
ingress_controller: traefik-ingress

View File

@ -24,5 +24,7 @@ disable-network-policy: true
flannel-backend: none
{% endif %}
# FIXME: Workaround for bug in Kubernetes 1.24/1.25 ignoring node IPv6 addresses
kubelet-arg: "--node-ip=0.0.0.0"
# Ingress-plugin
{% if kubernetes.ingress_controller != "traefik-ingress" %}
disable: traefik
{% endif %}