Skip to content

Commit 6f18b8d

Browse files
authored
feat(k8s): add cilium_native cni for native routing mode (#1233)
1 parent 8bca2f9 commit 6f18b8d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

scaleway-async/scaleway_async/k8s/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class CNI(str, Enum, metaclass=StrEnumMeta):
4444
FLANNEL = "flannel"
4545
KILO = "kilo"
4646
NONE = "none"
47+
CILIUM_NATIVE = "cilium_native"
4748

4849
def __str__(self) -> str:
4950
return str(self.value)

scaleway/scaleway/k8s/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class CNI(str, Enum, metaclass=StrEnumMeta):
4444
FLANNEL = "flannel"
4545
KILO = "kilo"
4646
NONE = "none"
47+
CILIUM_NATIVE = "cilium_native"
4748

4849
def __str__(self) -> str:
4950
return str(self.value)

0 commit comments

Comments
 (0)