Skip to content

Commit 3105f78

Browse files
committed
feat: Make Kube-OVN namespace configurable with default value (#5069)
Allow customization of the Kube-OVN namespace by introducing a default value of 'kube-system' using parameter expansion Signed-off-by: Mengxin Liu <liumengxinfly@gmail.com>
1 parent 79b70fd commit 3105f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/images/kubectl-ko

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -euo pipefail
33

4-
KUBE_OVN_NS=kube-system
4+
KUBE_OVN_NS=${KUBE_OVN_NS:-kube-system}
55
WITHOUT_KUBE_PROXY=${WITHOUT_KUBE_PROXY:-false}
66
OVN_NB_POD=
77
OVN_SB_POD=

0 commit comments

Comments
 (0)