78 lines
2.6 KiB
Bash
Executable File
78 lines
2.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
source $SRCDIR/utils.sh
|
|
|
|
job_name=dns
|
|
|
|
test_dns_nomad_job() {
|
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
|
|
|
echo "INFO: Starting nomad $job_name job using nomad-driver-containerd."
|
|
nomad job run -detach $job_name.nomad
|
|
|
|
# Even though $(nomad job status) reports 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 exec.
|
|
echo "INFO: Wait for ${job_name} container to get into RUNNING state, before trying exec."
|
|
is_container_active ${job_name} true
|
|
|
|
echo "INFO: Checking status of $job_name job."
|
|
job_status=$(nomad job status -short $job_name|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
|
if [ "$job_status" != "running" ];then
|
|
echo "ERROR: Error in getting ${job_name} job status."
|
|
return 1
|
|
fi
|
|
|
|
echo "INFO: Checking servers info in /etc/resolv.conf."
|
|
output=$(nomad alloc exec -job ${job_name} cat /etc/resolv.conf)
|
|
for ip in 127.0.0.1 127.0.0.2 ; do
|
|
echo -e "$output" |grep "nameserver $ip" &>/dev/null
|
|
if [ $? -ne 0 ];then
|
|
echo "ERROR: nameserver $ip not found."
|
|
return 1
|
|
fi
|
|
done
|
|
|
|
echo "INFO: Checking searches info in /etc/resolv.conf."
|
|
echo -e "$output" |grep "search internal.corp" &>/dev/null
|
|
if [ $? -ne 0 ];then
|
|
echo "ERROR: 'search internal.corp' not found."
|
|
return 1
|
|
fi
|
|
|
|
echo "INFO: Checking options info in /etc/resolv.conf."
|
|
echo -e "$output" |grep "options ndots:2" &>/dev/null
|
|
if [ $? -ne 0 ];then
|
|
echo "ERROR: 'options ndots:2' not found."
|
|
return 1
|
|
fi
|
|
|
|
echo "INFO: Checking sysctl net.core.somaxconn=16384"
|
|
output=$(nomad alloc exec -job ${job_name} cat /proc/sys/net/core/somaxconn)
|
|
if [ "$output" != "16384" ];then
|
|
echo "ERROR: Job ${job_name}: sysctl net.core.somaxconn=16384 not found."
|
|
return 1
|
|
fi
|
|
|
|
echo "INFO: Checking sysctl net.ipv4.ip_forward=1"
|
|
output=$(nomad alloc exec -job ${job_name} cat /proc/sys/net/ipv4/ip_forward)
|
|
if [ "$output" != "1" ];then
|
|
echo "ERROR: Job ${job_name}: sysctl net.ipv4.ip_forward=1 not found."
|
|
return 1
|
|
fi
|
|
|
|
echo "INFO: Stopping nomad ${job_name} job."
|
|
nomad job stop -detach ${job_name}
|
|
job_status=$(nomad job status -short ${job_name}|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
|
if [ $job_status != "dead(stopped)" ];then
|
|
echo "ERROR: Error in stopping ${job_name} job."
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: purge nomad ${job_name} job."
|
|
nomad job stop -detach -purge ${job_name}
|
|
popd
|
|
}
|
|
|
|
test_dns_nomad_job
|