generated from phoenix-oss/tenant-tpl
20 lines
No EOL
393 B
YAML
20 lines
No EOL
393 B
YAML
apiVersion: "k8s.cni.cncf.io/v1"
|
|
kind: NetworkAttachmentDefinition
|
|
metadata:
|
|
name: lan-net
|
|
namespace: ${TENANT_NAMESPACE}
|
|
spec:
|
|
config: '{
|
|
"cniVersion": "0.3.1",
|
|
"type": "bridge",
|
|
"bridge": "br-lan",
|
|
"ipam": {
|
|
"type": "static",
|
|
"addresses": [
|
|
{
|
|
"address": "172.168.100.2/24",
|
|
"gateway": "172.168.100.1"
|
|
}
|
|
]
|
|
}
|
|
}' |