Merge pull request #48360 from gunjan5/remove-noSnat

Automatic merge from submit-queue

Set snat to false

**What this PR does / why we need it**:
- the [version](e8bea554c5) of the portmap plugin included with calico CNI version `v1.9.1` doesn't have `noSnat` config option, it has `snat` which is not specified (which is the case without this PR), [will be set to true by default](https://github.com/containernetworking/plugins/tree/master/plugins/meta/portmap#usage) , so we need to explicitly set it to `false` 

CC @caseydavenport
This commit is contained in:
Kubernetes Submit Queue 2017-07-26 12:53:06 -07:00 committed by GitHub
commit 762ef32acb

View File

@ -103,7 +103,7 @@ spec:
{
"type": "portmap",
"capabilities": {"portMappings": true},
"noSnat": true
"snat": false
}
]
}