mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
Small improvements to docs
This PR fixes an incorrect placement of the update stanza in the task and also links from the env stanza into an example of using the template block to generate dynamic environment variables.
This commit is contained in:
@@ -74,4 +74,11 @@ env {
|
||||
}
|
||||
```
|
||||
|
||||
### Dynamic Environment Variables
|
||||
|
||||
Nomad also supports populating dynamic environment variables from data stored in
|
||||
HashiCorp Consul and Vault. To use this feature please see the documentation on
|
||||
the [`template` stanza][template-env].
|
||||
|
||||
[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
|
||||
[template-env]: /docs/job-specification/template.html#environment-variables "Nomad template Stanza"
|
||||
|
||||
@@ -39,17 +39,17 @@ job "docs" {
|
||||
group "api" {
|
||||
count = 5
|
||||
|
||||
update {
|
||||
max_parallel = 1
|
||||
canary = 5
|
||||
min_healthy_time = "30s"
|
||||
healthy_deadline = "10m"
|
||||
auto_revert = true
|
||||
}
|
||||
|
||||
task "api-server" {
|
||||
driver = "docker"
|
||||
|
||||
update {
|
||||
max_parallel = 1
|
||||
canary = 5
|
||||
min_healthy_time = "30s"
|
||||
healthy_deadline = "10m"
|
||||
auto_revert = true
|
||||
}
|
||||
|
||||
config {
|
||||
image = "api-server:1.3"
|
||||
}
|
||||
@@ -299,17 +299,17 @@ job "docs" {
|
||||
group "api" {
|
||||
count = 5
|
||||
|
||||
update {
|
||||
max_parallel = 1
|
||||
canary = 1
|
||||
min_healthy_time = "30s"
|
||||
healthy_deadline = "10m"
|
||||
auto_revert = true
|
||||
}
|
||||
|
||||
task "api-server" {
|
||||
driver = "docker"
|
||||
|
||||
update {
|
||||
max_parallel = 1
|
||||
canary = 1
|
||||
min_healthy_time = "30s"
|
||||
healthy_deadline = "10m"
|
||||
auto_revert = true
|
||||
}
|
||||
|
||||
config {
|
||||
image = "api-server:1.3"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user