Files
proxmox-tofu/proxmox/templates/machine_config_patches_controlplane.tftpl
Max Pfeiffer 9a073c50b7 Added and configured Gateway API
I did this when installing the cluster because cilium depends on it.
2025-11-08 10:41:03 +01:00

30 lines
645 B
Plaintext

machine:
install:
disk: ${install_disk}
image: ${install_image}
network:
hostname: ${hostname}
interfaces:
- deviceSelector:
physical: true
addresses:
- ${ip_address}
routes:
- network: ${network}
gateway: ${network_gateway}
vip:
ip: ${vip_shared_ip}
cluster:
allowSchedulingOnControlPlanes: false
network:
cni:
name: none
proxy:
disabled: true
inlineManifests:
- name: gateway-api
contents: |
${indent(8, gateway_api_manifest)}
- name: cilium
contents: |
${indent(8, cilium_manifest)}