Skip to content

Commit

Permalink
fix: Resolved the hidden issue with zombie processes (#4004)
Browse files Browse the repository at this point in the history
Signed-off-by: fanriming <fanriming@chinatelecom.cn>
  • Loading branch information
fanriming authored and zhangzujian committed May 13, 2024
1 parent fcfc099 commit 03834d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/images/start-controller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ function gen_conn_str {
nb_addr="$(gen_conn_str 6641)"
sb_addr="$(gen_conn_str 6642)"

exec ./kube-ovn-controller --ovn-nb-addr="$nb_addr" \
./kube-ovn-controller --ovn-nb-addr="$nb_addr" \
--ovn-sb-addr="$sb_addr" \
$@
2 changes: 1 addition & 1 deletion dist/images/start-ic-controller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ if [ -z "${OVN_NB_DAEMON}" ]; then
exit 1
fi

exec ./kube-ovn-ic-controller --ovn-nb-addr="$nb_addr" \
./kube-ovn-ic-controller --ovn-nb-addr="$nb_addr" \
--ovn-sb-addr="$sb_addr" \
$@
2 changes: 1 addition & 1 deletion dist/images/start-ovn-monitor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -euo pipefail
ENABLE_SSL=${ENABLE_SSL:-false}

exec ./kube-ovn-monitor $@
./kube-ovn-monitor $@
2 changes: 1 addition & 1 deletion dist/images/start-webhook.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
exec ./kube-ovn-webhook
./kube-ovn-webhook

0 comments on commit 03834d8

Please sign in to comment.