--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/nomad/issues
IRC: #nomad-tool on Freenode
---
You received this message because you are subscribed to the Google Groups "Nomad" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nomad-tool+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/nomad-tool/2ed5d0c6-072e-4acf-8f9c-d541cc2262cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Alex,
in the job config, i have following an example on hashicorp page
https://www.nomadproject.io/docs/drivers/exec.html
for this , i am confused what is bin here? since exec task run on linux only and in linux application can be installed using command
sudo apt-get install Rabbitmq-server
so, what to write for command attribute. similarly what is artifact block do. can some one explain how to write exec task with explanation.
http, https, and S3 artifacts. If these artifacts
are archives (zip, tar.gz, bz2, etc.), these will be unarchived before the task
is started."task "example" {
driver = "exec"
config {
command = "binary.bin"
}
artifact {
source = "https://dl.dropboxusercontent.com/u/1234/binary.bin"
options {
checksum = "sha256:abd123445ds4555555555"}
}
}