Skip to content

Commit 869b9fb

Browse files
authored
feat(k8s): allow cluster with cni=none (scaleway#469)
1 parent 212798d commit 869b9fb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class CNI(str, Enum, metaclass=StrEnumMeta):
4343
WEAVE = "weave"
4444
FLANNEL = "flannel"
4545
KILO = "kilo"
46+
NONE = "none"
4647

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

scaleway/scaleway/k8s/v1/types.py

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class CNI(str, Enum, metaclass=StrEnumMeta):
4343
WEAVE = "weave"
4444
FLANNEL = "flannel"
4545
KILO = "kilo"
46+
NONE = "none"
4647

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

0 commit comments

Comments
 (0)