Skip to content

Commit ef5fbe2

Browse files
authored
Merge pull request #273093 from paulopiyo777/l2-trunkedNet-validation
Disallow IPVLAN PluginType for L2 and Trunked Networks during NAKS deployment
2 parents f07b419 + 509be81 commit ef5fbe2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/operator-nexus/includes/kubernetes-cluster/quickstart-arm-deploy.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
/*
8686
{
8787
"networkId": "string",
88-
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN"
88+
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN"
8989
}
9090
*/
9191
},
@@ -112,7 +112,7 @@
112112
/*
113113
{
114114
"networkId": "string",
115-
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN"
115+
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN"
116116
}
117117
*/
118118
},
@@ -125,7 +125,7 @@
125125
/*
126126
{
127127
"networkId": "string",
128-
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN"
128+
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN"
129129
}
130130
*/
131131
},
@@ -152,7 +152,7 @@
152152
/*
153153
{
154154
"networkId": "string",
155-
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN"
155+
"pluginType": "SRIOV|DPDK|OSDevice|MACVLAN"
156156
}
157157
*/
158158
},

articles/operator-nexus/includes/kubernetes-cluster/quickstart-bicep-deploy.bicep

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ param dnsServiceIp string = '10.96.0.10'
3939
param agentPoolL2Networks array = []
4040
// {
4141
// networkId: 'string'
42-
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN'
42+
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN'
4343
// }
4444

4545
@description('The Layer 3 networks associated with the initial agent pool')
@@ -54,14 +54,14 @@ param agentPoolL3Networks array = []
5454
param agentPoolTrunkedNetworks array = []
5555
// {
5656
// networkId: 'string'
57-
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN'
57+
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN'
5858
// }
5959

6060
@description('The Layer 2 networks associated with the cluster')
6161
param l2Networks array = []
6262
// {
6363
// networkId: 'string'
64-
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN'
64+
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN'
6565
// }
6666

6767
@description('The Layer 3 networks associated with the cluster')
@@ -76,7 +76,7 @@ param l3Networks array = []
7676
param trunkedNetworks array = []
7777
// {
7878
// networkId: 'string'
79-
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN|IPVLAN'
79+
// pluginType: 'SRIOV|DPDK|OSDevice|MACVLAN'
8080
// }
8181

8282
@description('The LoadBalancer IP address pools associated with the cluster')

0 commit comments

Comments
 (0)