blob: 0d02fad5007967bfa9d1da8597d7cd926bc89d3d (
plain)
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
|
apiVersion: k8s.plugin.opnfv.org/v1alpha1
kind: ProviderNetwork
metadata:
name: pnetwork
spec:
cniType: ovn4nfv
ipv4Subnets:
- subnet: 172.16.33.0/24
name: subnet1
gateway: 172.16.33.1/24
excludeIps: 172.16.33.2 172.16.33.5..172.16.33.10
providerNetType: VLAN
vlan:
vlanId: "100"
providerInterfaceName: eth1
logicalInterfaceName: eth1.100
vlanNodeSelector: specific
nodeLabelList:
- kubernetes.io/hostname=localhost
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: pnw
labels:
app: pnw
spec:
replicas: 1
selector:
matchLabels:
app: pnw
template:
metadata:
labels:
app: pnw
annotations:
k8s.v1.cni.cncf.io/networks: '[{ "name": "ovn-networkobj"}]'
k8s.plugin.opnfv.org/nfn-network: '{ "type": "ovn4nfv", "interface": [{ "name": "pnetwork", "interface": "net0" }]}'
spec:
containers:
- name: pnw
image: "busybox"
imagePullPolicy: Always
stdin: true
tty: true
securityContext:
privileged: true
|