mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-17 02:08:58 +03:00
22 lines
386 B
Plaintext
22 lines
386 B
Plaintext
{
|
|
"cniVersion": "1.0.0",
|
|
"name": "crio",
|
|
"plugins": [
|
|
{
|
|
"type": "bridge",
|
|
"bridge": "cni0",
|
|
"isGateway": true,
|
|
"ipMasq": true,
|
|
"hairpinMode": true,
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"routes": [
|
|
{ "dst": "0.0.0.0/0" }
|
|
],
|
|
"ranges": [
|
|
[{ "subnet": "SUBNET" }]
|
|
]
|
|
}
|
|
}
|
|
]
|
|
} |