We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e0d6a commit 80bd451Copy full SHA for 80bd451
api/k8s/v1/k8s_sdk.go
@@ -136,6 +136,8 @@ const (
136
CNIKilo = CNI("kilo")
137
// Does not install any CNI. This feature is only available through a ticket and is not covered by support.
138
CNINone = CNI("none")
139
+ // Cilium CNI will be configured in native routing mode (https://docs.cilium.io/en/stable/network/concepts/routing/#native-routing).
140
+ CNICiliumNative = CNI("cilium_native")
141
)
142
143
func (enum CNI) String() string {
@@ -155,6 +157,7 @@ func (enum CNI) Values() []CNI {
155
157
"flannel",
156
158
"kilo",
159
"none",
160
+ "cilium_native",
161
}
162
163
0 commit comments