-
Notifications
You must be signed in to change notification settings - Fork 14
/
multus_network.yaml
56 lines (55 loc) · 1.47 KB
/
multus_network.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: macvlan-static
spec:
config: '{
"cniVersion": "0.3.1",
"name": "macvlan-static",
"type": "macvlan",
"master": "eth0",
"capabilities": { "ips": true },
"ipam": {
"type": "host-local",
"subnet": "192.168.0.0/19",
"rangeStart": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.0",
"rangeEnd": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.63",
"routes": [
{ "dst": "192.168.0.0/16" }
],
"gateway": "192.168.2.1"
}
}'
# '{
# "cniVersion": "0.3.1",
# "name": "macvlan-static",
# "type": "macvlan",
# "master": "eno2",
# "capabilities": { "ips": true },
# "ipam": {
# "type": "host-local",
# "subnet": "192.168.0.0/19",
# "rangeStart": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.0",
# "rangeEnd": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.63",
# "gateway": "192.168.2.1"
# }
# }'
---
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: ipvlan-static
spec:
config: '{
"cniVersion": "0.3.1",
"name": "macvlan-static",
"type": "ipvlan",
"master": "eth0",
"capabilities": { "ips": true },
"ipam": {
"type": "host-local",
"subnet": "192.168.0.0/19",
"rangeStart": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.0",
"rangeEnd": "${CLUSTER_EXTERNAL_SUBNET_PREFIX}.63"
}
}'