diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-02-25 17:42:50 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-03-04 12:35:15 +0000 |
commit | 516b0adf6d8bbc6533ab58d7add96ec74d8be05a (patch) | |
tree | 57cc09232a708ee6510ded4f00c3e9e0745e3b8e /src/plugins/cnat/cnat.api | |
parent | 3fd77f7dea1ac91c5b4c9ede69b992a4e2243153 (diff) |
cnat: Add calico/k8s src policy
This patch implements k8s-specific extensions
to the cnat plugin.
This could be done by exposing a richer semantic
on srcNAT policies, but this might be too complex
work at this point. Also k8s fits quite well as a
'cloud NAT' usecase.
Type: feature
Change-Id: I2266daf7b10a92e65f5ed430838a12ae826bd333
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/plugins/cnat/cnat.api')
-rw-r--r-- | src/plugins/cnat/cnat.api | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/cnat/cnat.api b/src/plugins/cnat/cnat.api index df57ea54896..e253084e74e 100644 --- a/src/plugins/cnat/cnat.api +++ b/src/plugins/cnat/cnat.api @@ -171,6 +171,7 @@ enum cnat_snat_policy_table:u8 { CNAT_POLICY_INCLUDE_V4 = 0, CNAT_POLICY_INCLUDE_V6 = 1, + CNAT_POLICY_POD = 2, }; autoreply define cnat_snat_policy_add_del_if @@ -190,6 +191,8 @@ enum cnat_snat_policies:u8 /* Filter by interface list : snat_policy_add_del_if * and prefix list : snat_policy_add_del_if */ CNAT_POLICY_IF_PFX = 1, + /* Kubernetes specific policy */ + CNAT_POLICY_K8S = 2, }; autoreply define cnat_set_snat_policy |