Skip to content

Commit 58e83ce

Browse files
authored
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 <[email protected]>
1 parent d8a4a05 commit 58e83ce

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)