Support OVN Interconnect (#9599)

Mostly taken from: https://raw.githubusercontent.com/kubeovn/kube-ovn/master/yamls/ovn-ic.yaml.j2
This commit is contained in:
Jochen Friedrich
2023-01-16 09:08:52 +01:00
committed by GitHub
parent 6b4bb2a121
commit 6f61f3d9cb
3 changed files with 27 additions and 0 deletions

View File

@@ -608,3 +608,19 @@ spec:
ports:
- port: 10665
name: metrics
{% if kube_ovn_ic_enable %}
---
kind: ConfigMap
apiVersion: v1
metadata:
name: ovn-ic-config
namespace: kube-system
data:
enable-ic: "{{ kube_ovn_ic_enable | lower }}"
az-name: "{{ kube_ovn_ic_zone }}"
ic-db-host: "{{ kube_ovn_ic_dbhost }}"
ic-nb-port: "6645"
ic-sb-port: "6646"
gw-nodes: "{{ kube_ovn_central_hosts|join(',') }}"
auto-route: "{{ kube_ovn_ic_autoroute | lower }}"
{% endif %}