mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-26 11:50:15 +03:00
* Add vars for configuring cilium IP load balancer pools and bgp peer policies * Cilium 1.16+ Support - Add vars for configuring cilium bgpv2 api & handle cilium_kube_proxy_replacement unsupported values
13 lines
376 B
Django/Jinja
13 lines
376 B
Django/Jinja
{% for cilium_bgp_advertisement in cilium_bgp_advertisements %}
|
|
---
|
|
apiVersion: "cilium.io/v2alpha1"
|
|
kind: CiliumBGPAdvertisement
|
|
metadata:
|
|
name: "{{ cilium_bgp_advertisement.name }}"
|
|
{% if cilium_bgp_advertisement.labels %}
|
|
labels: {{ cilium_bgp_advertisement.labels | to_yaml }}
|
|
{% endif %}
|
|
spec:
|
|
{{ cilium_bgp_advertisement.spec | to_yaml | indent(4) }}
|
|
{% endfor %}
|