2016-10-31 04:05:05 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "template Stanza - Job Specification"
|
|
|
|
sidebar_current: "docs-job-specification-template"
|
|
|
|
description: |-
|
|
|
|
The "template" block instantiates an instance of a template renderer. This
|
|
|
|
creates a convenient way to ship configuration files that are populated from
|
2017-01-24 17:12:42 +00:00
|
|
|
environment variables, Consul data, Vault secrets, or just general
|
|
|
|
configurations within a Nomad task.
|
2016-10-31 04:05:05 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# `template` Stanza
|
|
|
|
|
|
|
|
<table class="table table-bordered table-striped">
|
|
|
|
<tr>
|
|
|
|
<th width="120">Placement</th>
|
|
|
|
<td>
|
|
|
|
<code>job -> group -> task -> **template**</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
The `template` block instantiates an instance of a template renderer. This
|
|
|
|
creates a convenient way to ship configuration files that are populated from
|
2017-01-24 17:12:42 +00:00
|
|
|
environment variables, Consul data, Vault secrets, or just general
|
|
|
|
configurations within a Nomad task.
|
2016-10-31 04:05:05 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
job "docs" {
|
|
|
|
group "example" {
|
|
|
|
task "server" {
|
|
|
|
template {
|
|
|
|
source = "local/redis.conf.tpl"
|
|
|
|
destination = "local/redis.conf"
|
|
|
|
change_mode = "signal"
|
2017-03-14 09:12:48 +00:00
|
|
|
change_signal = "SIGINT"
|
2016-10-31 04:05:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-01-24 01:02:13 +00:00
|
|
|
Nomad utilizes a tool called [Consul Template][ct]. Since Nomad v0.5.3, the
|
2017-03-27 21:58:04 +00:00
|
|
|
template can reference [Nomad's runtime environment variables][env]. Since Nomad
|
|
|
|
v0.5.6, the template can reference [Node attributes and metadata][nodevars]. For
|
|
|
|
a full list of the API template functions, please refer to the [Consul Template
|
2017-05-24 00:24:21 +00:00
|
|
|
README][ct]. Since Nomad v0.6.0, templates can be read as environment variables.
|
2016-10-31 04:05:05 +00:00
|
|
|
|
|
|
|
## `template` Parameters
|
|
|
|
|
2017-02-01 04:00:33 +00:00
|
|
|
- `change_mode` `(string: "restart")` - Specifies the behavior Nomad should take
|
2017-05-03 19:40:27 +00:00
|
|
|
if the rendered template changes. Nomad will always write the new contents of
|
|
|
|
the template to the specified destination. The possible values below describe
|
|
|
|
Nomad's action after writing the template to disk.
|
2017-02-01 04:00:33 +00:00
|
|
|
|
|
|
|
- `"noop"` - take no action (continue running the task)
|
|
|
|
- `"restart"` - restart the task
|
|
|
|
- `"signal"` - send a configurable signal to the task
|
|
|
|
|
2017-01-26 05:16:18 +00:00
|
|
|
- `change_signal` `(string: "")` - Specifies the signal to send to the task as a
|
|
|
|
string like `"SIGUSR1"` or `"SIGINT"`. This option is required if the
|
|
|
|
`change_mode` is `signal`.
|
2016-10-31 04:05:05 +00:00
|
|
|
|
|
|
|
- `data` `(string: "")` - Specifies the raw template to execute. One of `source`
|
|
|
|
or `data` must be specified, but not both. This is useful for smaller
|
|
|
|
templates, but we recommend using `source` for larger templates.
|
|
|
|
|
2017-01-26 05:16:18 +00:00
|
|
|
- `destination` `(string: <required>)` - Specifies the location where the
|
|
|
|
resulting template should be rendered, relative to the task directory.
|
|
|
|
|
2017-05-24 00:24:21 +00:00
|
|
|
- `env` `(bool: false)` - Specifies the template should be read back in as
|
|
|
|
environment variables for the task. (See below)
|
|
|
|
|
|
|
|
- `left_delimiter` `(string: "{{")` - Specifies the left delimiter to use in the
|
2017-02-21 00:43:28 +00:00
|
|
|
template. The default is "{{" for some templates, it may be easier to use a
|
|
|
|
different delimiter that does not conflict with the output file itself.
|
|
|
|
|
2017-05-24 16:54:22 +00:00
|
|
|
- `perms` `(string: "644")` - Specifies the rendered template's permissions.
|
2017-02-02 19:28:04 +00:00
|
|
|
File permissions are given as octal of the unix file permissions rwxrwxrwx.
|
2016-10-31 04:05:05 +00:00
|
|
|
|
2017-05-24 00:24:21 +00:00
|
|
|
- `right_delimiter` `(string: "}}")` - Specifies the right delimiter to use in the
|
2017-02-21 00:43:28 +00:00
|
|
|
template. The default is "}}" for some templates, it may be easier to use a
|
|
|
|
different delimiter that does not conflict with the output file itself.
|
|
|
|
|
2017-01-26 05:16:18 +00:00
|
|
|
- `source` `(string: "")` - Specifies the path to the template to be rendered.
|
|
|
|
One of `source` or `data` must be specified, but not both. This source can
|
|
|
|
optionally be fetched using an [`artifact`][artifact] resource. This template
|
|
|
|
must exist on the machine prior to starting the task; it is not possible to
|
|
|
|
reference a template inside of a Docker container, for example.
|
2016-10-31 04:05:05 +00:00
|
|
|
|
|
|
|
- `splay` `(string: "5s")` - Specifies a random amount of time to wait between
|
|
|
|
0ms and the given splay value before invoking the change mode. This is
|
|
|
|
specified using a label suffix like "30s" or "1h", and is often used to
|
|
|
|
prevent a thundering herd problem where all task instances restart at the same
|
|
|
|
time.
|
|
|
|
|
|
|
|
## `template` Examples
|
|
|
|
|
|
|
|
The following examples only show the `template` stanzas. Remember that the
|
|
|
|
`template` stanza is only valid in the placements listed above.
|
|
|
|
|
|
|
|
### Inline Template
|
|
|
|
|
2016-10-31 20:51:06 +00:00
|
|
|
This example uses an inline template to render a file to disk. This file watches
|
|
|
|
various keys in Consul for changes:
|
2016-10-31 04:05:05 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
template {
|
|
|
|
data = "---\nkey: {{ key \"service/my-key\" }}"
|
|
|
|
destination = "local/file.yml"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-31 20:51:06 +00:00
|
|
|
It is also possible to use heredocs for multi-line templates, like:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
template {
|
|
|
|
data = <<EOH
|
|
|
|
---
|
2017-01-24 01:02:13 +00:00
|
|
|
bind_port: {{ env "NOMAD_PORT_db" }}
|
|
|
|
scratch_dir: {{ env "NOMAD_TASK_DIR" }}
|
2017-01-23 23:50:38 +00:00
|
|
|
service_key: {{ key "service/my-key" }}
|
2016-10-31 20:51:06 +00:00
|
|
|
EOH
|
|
|
|
|
|
|
|
destination = "local/file.yml"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-31 04:05:05 +00:00
|
|
|
### Remote Template
|
|
|
|
|
|
|
|
This example uses an [`artifact`][artifact] stanza to download an input template
|
|
|
|
before passing it to the template engine:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
artifact {
|
|
|
|
source = "https://example.com/file.yml.tpl"
|
|
|
|
destination = "local/file.yml.tpl"
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
source = "local/file.yml.tpl"
|
|
|
|
destination = "local/file.yml"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-03-27 21:58:04 +00:00
|
|
|
### Node Variables
|
|
|
|
|
|
|
|
As of Nomad v0.5.6 it is possible to access the Node's attributes and metadata.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
template {
|
|
|
|
data = <<EOH
|
|
|
|
---
|
|
|
|
node_dc: {{ env "node.datacenter" }}
|
|
|
|
node_cores: {{ env "attr.cpu.numcores" }}
|
|
|
|
meta_key: {{ env "meta.node_meta_key" }}
|
|
|
|
EOH
|
|
|
|
|
|
|
|
destination = "local/file.yml"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-05-24 00:24:21 +00:00
|
|
|
### Environment Variables
|
|
|
|
|
|
|
|
Since v0.6.0 templates may be used to create environment variables for tasks.
|
|
|
|
Env templates work exactly like other templates except once they're written,
|
|
|
|
they're read back in as `KEY=value` pairs. Those key value pairs are included
|
|
|
|
in the task's environment.
|
|
|
|
|
|
|
|
For example the following template stanza:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
template {
|
|
|
|
data = <<EOH
|
|
|
|
# Lines starting with a # are ignored
|
|
|
|
|
|
|
|
# Empty lines are also ignored
|
|
|
|
CORES={{ env "attr.cpu.numcores" }}
|
|
|
|
SERVICE_KEY={{ key "service/my-key" }}
|
|
|
|
EOH
|
|
|
|
|
|
|
|
destination = "local/file.env"
|
|
|
|
env = true
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-05-24 20:55:21 +00:00
|
|
|
The task's environment would then have environment variables like the
|
|
|
|
following:
|
2017-05-24 00:24:21 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
CORES=4
|
|
|
|
SERVICE_KEY=12345678-1234-1234-1234-1234-123456789abc
|
|
|
|
```
|
|
|
|
|
|
|
|
This allows [12factor app](https://12factor.net/config) style environment
|
|
|
|
variable based configuration while keeping all of the familiar features and
|
2017-05-24 20:55:21 +00:00
|
|
|
semantics of Nomad templates.
|
2017-05-24 00:24:21 +00:00
|
|
|
|
2017-06-02 22:08:08 +00:00
|
|
|
If a value may include newlines you should JSON encode it:
|
|
|
|
|
|
|
|
```
|
|
|
|
CERT_PEM={{ file "path/to/cert.pem" | toJSON }}
|
|
|
|
```
|
|
|
|
|
|
|
|
The parser will read the JSON string, so the `$CERT_PEM` environment variable
|
|
|
|
will be identical to the contents of the file.
|
|
|
|
|
|
|
|
For more details see [go-envparser's
|
|
|
|
README](https://github.com/schmichael/go-envparse#readme).
|
2017-05-24 00:24:21 +00:00
|
|
|
|
2017-03-27 21:58:04 +00:00
|
|
|
## Client Configuration
|
2016-11-02 20:03:54 +00:00
|
|
|
|
|
|
|
The `template` block has the following [client configuration
|
2017-05-27 02:30:31 +00:00
|
|
|
options](/docs/agent/configuration/client.html#options):
|
2016-11-02 20:03:54 +00:00
|
|
|
|
|
|
|
* `template.allow_host_source` - Allows templates to specify their source
|
|
|
|
template as an absolute path referencing host directories. Defaults to `true`.
|
|
|
|
|
2016-10-31 04:05:05 +00:00
|
|
|
[ct]: https://github.com/hashicorp/consul-template "Consul Template by HashiCorp"
|
|
|
|
[artifact]: /docs/job-specification/artifact.html "Nomad artifact Job Specification"
|
2017-01-23 23:54:56 +00:00
|
|
|
[env]: /docs/runtime/environment.html "Nomad Runtime Environment"
|
2017-03-27 21:58:04 +00:00
|
|
|
[nodevars]: /docs/runtime/interpolation.html#interpreted_node_vars "Nomad Node Variables"
|