Add test.

This commit is contained in:
Shishir Mahajan 2020-11-12 11:49:31 -08:00
parent d101e9c5b3
commit 36d5b31abf
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 5 additions and 4 deletions

View File

@ -8,6 +8,7 @@ job "redis" {
config {
image = "docker.io/library/redis:alpine"
seccomp = true
cwd = "/home/redis"
}
resources {

View File

@ -25,10 +25,10 @@ test_redis_nomad_job() {
exit 1
fi
echo "INFO: Exec redis job."
exec_output=$(nomad alloc exec -job redis echo hello_exec)
if [ $exec_output != "hello_exec" ]; then
echo "ERROR: Error in exec'ing redis job."
echo "INFO: Exec redis job and check current working directory (cwd)."
exec_output=$(nomad alloc exec -job redis pwd)
if [ $exec_output != "/home/redis" ]; then
echo "ERROR: Error in exec'ing redis job and checking current working directory (cwd)."
exit 1
fi