commit
26383601f7
@ -20,7 +20,6 @@ package containerd
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -583,13 +582,11 @@ func (d *Driver) SignalTask(taskID string, signal string) error {
|
|||||||
// The given signal will be forwarded to the target taskID.
|
// The given signal will be forwarded to the target taskID.
|
||||||
// Please checkout https://github.com/hashicorp/consul-template/blob/master/signals/signals_unix.go
|
// Please checkout https://github.com/hashicorp/consul-template/blob/master/signals/signals_unix.go
|
||||||
// for a list of supported signals.
|
// for a list of supported signals.
|
||||||
sig := os.Interrupt
|
sig, ok := signals.SignalLookup[signal]
|
||||||
if s, ok := signals.SignalLookup[signal]; ok {
|
if !ok {
|
||||||
sig = s
|
return fmt.Errorf("Invalid signal: %s", signal)
|
||||||
} else {
|
|
||||||
d.logger.Warn("unknown signal to send to task, using SIGINT instead", "signal", signal, "task_id", handle.taskConfig.ID)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return handle.signal(d.ctxContainerd, sig)
|
return handle.signal(d.ctxContainerd, sig)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,6 +20,23 @@ test_signal_handler_nomad_job() {
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Even though $(nomad job status) reports signal job status as "running"
|
||||||
|
# The actual container process might not be running yet.
|
||||||
|
# We need to wait for actual container to start running before trying to send invalid signal.
|
||||||
|
echo "INFO: Wait for signal container to get into RUNNING state, before trying to send invalid signal."
|
||||||
|
is_signal_container_active
|
||||||
|
|
||||||
|
echo "INFO: Test invalid signal."
|
||||||
|
alloc_id=$(nomad job status signal|awk 'END{print}'|cut -d ' ' -f 1)
|
||||||
|
local outfile=$(mktemp /tmp/signal.XXXXXX)
|
||||||
|
nomad alloc signal -s INVALID $alloc_id >> $outfile 2>&1
|
||||||
|
if ! grep -q "Invalid signal" $outfile; then
|
||||||
|
echo "ERROR: Invalid signal didn't error out."
|
||||||
|
cleanup "$outfile"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
cleanup "$outfile"
|
||||||
|
|
||||||
echo "INFO: Stopping nomad signal handler job."
|
echo "INFO: Stopping nomad signal handler job."
|
||||||
nomad job stop signal
|
nomad job stop signal
|
||||||
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
||||||
@ -33,4 +50,29 @@ test_signal_handler_nomad_job() {
|
|||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
local tmpfile=$1
|
||||||
|
rm $tmpfile > /dev/null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
|
is_signal_container_active() {
|
||||||
|
i="0"
|
||||||
|
while test $i -lt 5
|
||||||
|
do
|
||||||
|
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
echo "INFO: signal container is up and running"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
echo "INFO: signal container is down, sleep for 4 seconds."
|
||||||
|
sleep 4s
|
||||||
|
i=$[$i+1]
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $i -ge 5 ]; then
|
||||||
|
echo "ERROR: signal container didn't come up. exit 1."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
test_signal_handler_nomad_job
|
test_signal_handler_nomad_job
|
||||||
|
@ -81,6 +81,7 @@ is_capabilities_container_active() {
|
|||||||
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "INFO: capabilities container is up and running"
|
echo "INFO: capabilities container is up and running"
|
||||||
|
sleep 5s
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
echo "INFO: capabilities container is down, sleep for 4 seconds."
|
echo "INFO: capabilities container is down, sleep for 4 seconds."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user