d195680ec1
This adds a basic test for consul template, that verifies the behaviour of consul-template with task blocking and restarting of tasks
23 lines
375 B
HCL
23 lines
375 B
HCL
job "test1" {
|
|
datacenters = ["dc1", "dc2"]
|
|
type = "service"
|
|
|
|
group "test1" {
|
|
count = 1
|
|
|
|
task "test" {
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "redis:3.2"
|
|
}
|
|
|
|
template {
|
|
data = "---\nkey: {{ key \"consultemplatetest\" }}"
|
|
destination = "local/file.yml"
|
|
change_mode = "restart"
|
|
}
|
|
}
|
|
}
|
|
}
|