k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
557 B
27 lines
557 B
{
|
|
"cniVersion":"0.3.0",
|
|
"name":"kubernetes",
|
|
"plugins":[
|
|
{
|
|
"name":"kubernetes",
|
|
"type":"bridge",
|
|
"bridge":"kube-bridge",
|
|
"isDefaultGateway":true,
|
|
{% if kube_router_support_hairpin_mode %}
|
|
"hairpinMode":true,
|
|
{% endif %}
|
|
"ipam":{
|
|
{% if host_subnet is defined %}
|
|
"subnet": "{{ host_subnet }}",
|
|
{% endif %}
|
|
"type":"host-local"
|
|
}
|
|
},
|
|
{
|
|
"type":"portmap",
|
|
"capabilities":{
|
|
"portMappings":true
|
|
}
|
|
}
|
|
]
|
|
}
|