-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update entrypoint scripts and document to align with new CLI #1097
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,19 +33,14 @@ exec 2<&- # Close stderr | |
exec 1<>$BOOTUP_LOGFILE # stdout read and write to logfile instead of console | ||
exec 2>&1 # redirect stderr to where stdout is (logfile) | ||
|
||
mkdir -p "$CONTIV_LOG_DIR" | ||
mkdir -p /var/run/openvswitch | ||
mkdir -p /etc/openvswitch | ||
mkdir -p "$CONTIV_LOG_DIR" /var/run/openvswitch /etc/openvswitch | ||
|
||
# setting up ovs | ||
# TODO: this is the same code in ovsInit.sh, needs to reduce the duplication | ||
modprobe openvswitch || (echo "CRITICAL: Failed to load kernel module openvswitch" && exit 1 ) | ||
echo "INFO: Loaded kernel module openvswitch" | ||
|
||
set -uo pipefail | ||
|
||
mkdir -p /var/run/openvswitch | ||
mkdir -p /var/log/contiv/ | ||
modprobe openvswitch || (echo "CRITICAL: Failed to load kernel module openvswitch" && exit 1 ) | ||
echo "INFO: Loaded kernel module openvswitch" | ||
|
||
if [ -d "/etc/openvswitch" ]; then | ||
if [ -f "/etc/openvswitch/conf.db" ]; then | ||
|
@@ -66,11 +61,11 @@ ovsdb-server --remote=punix:/var/run/openvswitch/db.sock \ | |
--private-key=db:Open_vSwitch,SSL,private_key \ | ||
--certificate=db:Open_vSwitch,SSL,certificate \ | ||
--bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert \ | ||
--log-file=/var/log/contiv/ovs-db.log -vsyslog:info -vfile:info \ | ||
--log-file=$CONTIV_LOG_DIR/ovs-db.log -vsyslog:info -vfile:info \ | ||
--pidfile --detach /etc/openvswitch/conf.db | ||
|
||
echo "INFO: Starting ovs-vswitchd" | ||
ovs-vswitchd -v --pidfile --detach --log-file=/var/log/contiv/ovs-vswitchd.log \ | ||
ovs-vswitchd -v --pidfile --detach --log-file=$CONTIV_LOG_DIR/ovs-vswitchd.log \ | ||
-vconsole:err -vsyslog:info -vfile:info & | ||
|
||
retry=0 | ||
|
@@ -97,7 +92,7 @@ if [ "$CONTIV_ROLE" = "netmaster" ]; then | |
while true ; do | ||
echo "INFO: Starting contiv netmaster" | ||
set -x | ||
/contiv/bin/netmaster "$@" &> "$CONTIV_LOG_DIR/netmaster.log" | ||
/contiv/bin/netmaster "$@" &>> "$CONTIV_LOG_DIR/netmaster.log" | ||
set +x | ||
echo "ERROR: Contiv netmaster has exited, restarting in 5s" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. did log rotation happen elsewhere now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no, there's no log rotation today There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
sleep 5 | ||
|
@@ -107,7 +102,7 @@ fi | |
while true ; do | ||
echo "INFO: Starting contiv netplugin" | ||
set -x | ||
/contiv/bin/netplugin "$@" &> "$CONTIV_LOG_DIR/netplugin.log" | ||
/contiv/bin/netplugin "$@" &>> "$CONTIV_LOG_DIR/netplugin.log" | ||
set +x | ||
echo "ERROR: Contiv netplugin has exited, restarting in 5s" | ||
sleep 5 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,15 +50,12 @@ echo "INFO: Running contiv in mode $CONTIV_MODE" | |
|
||
set -uo pipefail | ||
|
||
mkdir -p /opt/contiv/ | ||
mkdir -p /opt/contiv/ /var/log/contiv | ||
|
||
if [ -d /var/contiv/log ]; then | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could both of these dirs even even exist at the same time? I think that implies both bindmounts are active... and in that case, the I think moving the contents will work, but moving the dir (possibly mountpoint) is not safe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah yeah I see these are both bindmounts... you'll need to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed to use |
||
# /var/contiv/log/ is deprecated, move all data to /var/log/contiv | ||
mkdir -p /var/log | ||
mv /var/contiv/log /var/log/contiv | ||
echo "INFO: Moved contiv log from /var/contiv/log (deprecated) to /var/log/contiv" | ||
else | ||
mkdir -p /var/log/contiv | ||
cp -a /var/contiv/log/* /var/log/contiv/ | ||
echo "INFO: Copied contiv log from /var/contiv/log (deprecated) to /var/log/contiv" | ||
fi | ||
|
||
if [ "$CONTIV_ROLE" = "netplugin" ]; then | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i read this like A, B, or C . . . maybe
dev test: etcd or ...