2016-10-28 00:36:26 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "group Stanza - Job Specification"
|
|
|
|
sidebar_current: "docs-job-specification-group"
|
|
|
|
description: |-
|
|
|
|
The "group" stanza defines a series of tasks that should be co-located on the
|
|
|
|
same Nomad client. Any task within a group will be placed on the same client.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `group` Stanza
|
|
|
|
|
|
|
|
<table class="table table-bordered table-striped">
|
|
|
|
<tr>
|
|
|
|
<th width="120">Placement</th>
|
|
|
|
<td>
|
|
|
|
<code>job -> **group**</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
The `group` stanza defines a series of tasks that should be co-located on the
|
|
|
|
same Nomad client. Any [task][] within a group will be placed on the same
|
|
|
|
client.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
job "docs" {
|
|
|
|
group "example" {
|
|
|
|
# ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## `group` Parameters
|
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
- `constraint` <code>([Constraint][]: nil)</code> -
|
|
|
|
This can be provided multiple times to define additional constraints.
|
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
- `count` `(int: 1)` - Specifies the number of the task groups that should
|
|
|
|
be running under this group. This value must be non-negative.
|
|
|
|
|
2016-11-02 13:26:08 +00:00
|
|
|
- `ephemeral_disk` <code>([EphemeralDisk][]: nil)</code> - Specifies the
|
|
|
|
ephemeral disk requirements of the group. Ephemeral disks can be marked as
|
|
|
|
sticky and support live data migrations.
|
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
- `meta` <code>([Meta][]: nil)</code> - Specifies a key-value map that annotates
|
|
|
|
with user-defined metadata.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
- `restart` <code>([Restart][]: nil)</code> - Specifies the restart policy for
|
|
|
|
all tasks in this group. If omitted, a default policy exists for each job
|
2016-10-28 03:01:11 +00:00
|
|
|
type, which can be found in the [restart stanza documentation][restart].
|
2016-10-28 00:36:26 +00:00
|
|
|
|
2016-11-01 12:53:13 +00:00
|
|
|
- `task` <code>([Task][]: <required>)</code> - Specifies one or more tasks to run
|
2016-10-28 00:36:26 +00:00
|
|
|
within this group. This can be specified multiple times, to add a task as part
|
|
|
|
of the group.
|
|
|
|
|
2016-11-02 22:29:17 +00:00
|
|
|
- `vault` <code>([Vault][]: nil)</code> - Specifies the set of Vault policies
|
|
|
|
required by all tasks in this group. Overrides a `vault` block set at the
|
|
|
|
`job` level.
|
2016-11-02 22:14:49 +00:00
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
## `group` Examples
|
|
|
|
|
2016-10-31 00:41:03 +00:00
|
|
|
The following examples only show the `group` stanzas. Remember that the
|
|
|
|
`group` stanza is only valid in the placements listed above.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
### Specifying Count
|
|
|
|
|
|
|
|
This example specifies that 5 instances of the tasks within this group should be
|
|
|
|
running:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
group "example" {
|
|
|
|
count = 5
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
### Tasks with Constraint
|
2016-10-28 00:36:26 +00:00
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
This example shows two abbreviated tasks with a constraint on the group. This
|
|
|
|
will restrict the tasks to 64-bit operating systems.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
group "example" {
|
|
|
|
constraint {
|
2017-05-02 00:36:20 +00:00
|
|
|
attribute = "${attr.cpu.arch}"
|
2016-10-28 00:36:26 +00:00
|
|
|
value = "amd64"
|
|
|
|
}
|
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
task "cache" {
|
|
|
|
# ...
|
|
|
|
}
|
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
task "server" {
|
|
|
|
# ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Metadata
|
|
|
|
|
|
|
|
This example show arbitrary user-defined metadata on the group:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
group "example" {
|
|
|
|
meta {
|
|
|
|
"my-key" = "my-value"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-31 00:36:27 +00:00
|
|
|
[task]: /docs/job-specification/task.html "Nomad task Job Specification"
|
|
|
|
[job]: /docs/job-specification/job.html "Nomad job Job Specification"
|
|
|
|
[constraint]: /docs/job-specification/constraint.html "Nomad constraint Job Specification"
|
2016-11-02 13:26:08 +00:00
|
|
|
[ephemeraldisk]: /docs/job-specification/ephemeral_disk.html "Nomad ephemeral_disk Job Specification"
|
2016-10-31 00:36:27 +00:00
|
|
|
[meta]: /docs/job-specification/meta.html "Nomad meta Job Specification"
|
|
|
|
[restart]: /docs/job-specification/restart.html "Nomad restart Job Specification"
|
2017-06-29 23:15:13 +00:00
|
|
|
[vault]: /docs/job-specification/vault.html "Nomad vault Job Specification"
|