mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-26 03:28:28 +03:00
10 lines
263 B
Django/Jinja
10 lines
263 B
Django/Jinja
{% for cilium_bgp_cluster_config in cilium_bgp_cluster_configs %}
|
|
---
|
|
apiVersion: "cilium.io/v2"
|
|
kind: CiliumBGPClusterConfig
|
|
metadata:
|
|
name: "{{ cilium_bgp_cluster_config.name }}"
|
|
spec:
|
|
{{ cilium_bgp_cluster_config.spec | to_yaml | indent(2) }}
|
|
{% endfor %}
|