2015-09-15 00:43:42 +00:00
|
|
|
package jobspec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
2017-02-22 20:30:05 +00:00
|
|
|
"reflect"
|
2015-09-23 20:44:08 +00:00
|
|
|
"strings"
|
2015-09-15 00:43:42 +00:00
|
|
|
"testing"
|
2015-09-20 21:18:10 +00:00
|
|
|
"time"
|
2015-09-15 00:43:42 +00:00
|
|
|
|
2018-12-06 23:09:26 +00:00
|
|
|
capi "github.com/hashicorp/consul/api"
|
2017-02-22 20:30:05 +00:00
|
|
|
"github.com/hashicorp/nomad/api"
|
|
|
|
"github.com/hashicorp/nomad/helper"
|
2015-09-15 00:43:42 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2017-02-22 20:30:05 +00:00
|
|
|
"github.com/kr/pretty"
|
2015-09-15 00:43:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
File string
|
2017-02-22 20:30:05 +00:00
|
|
|
Result *api.Job
|
2015-09-15 00:43:42 +00:00
|
|
|
Err bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"basic.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
Name: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
Type: helper.StringToPtr("batch"),
|
|
|
|
Priority: helper.IntToPtr(52),
|
|
|
|
AllAtOnce: helper.BoolToPtr(true),
|
2015-09-15 00:43:42 +00:00
|
|
|
Datacenters: []string{"us2", "eu1"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Region: helper.StringToPtr("fooregion"),
|
2017-09-07 23:56:15 +00:00
|
|
|
Namespace: helper.StringToPtr("foonamespace"),
|
2019-11-18 21:05:06 +00:00
|
|
|
ConsulToken: helper.StringToPtr("abc"),
|
2017-02-22 20:30:05 +00:00
|
|
|
VaultToken: helper.StringToPtr("foo"),
|
2015-09-15 00:43:42 +00:00
|
|
|
|
2015-09-15 00:46:52 +00:00
|
|
|
Meta: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
},
|
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:48:11 +00:00
|
|
|
LTarget: "kernel.os",
|
|
|
|
RTarget: "windows",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
2019-11-13 23:36:15 +00:00
|
|
|
{
|
|
|
|
LTarget: "${attr.vault.version}",
|
|
|
|
RTarget: ">= 0.6.1",
|
|
|
|
Operand: "semver",
|
|
|
|
},
|
2015-09-15 00:48:11 +00:00
|
|
|
},
|
|
|
|
|
2018-07-16 13:30:58 +00:00
|
|
|
Affinities: []*api.Affinity{
|
|
|
|
{
|
|
|
|
LTarget: "${meta.team}",
|
|
|
|
RTarget: "mobile",
|
|
|
|
Operand: "=",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(50),
|
2018-07-16 13:30:58 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-07-18 17:28:26 +00:00
|
|
|
Spreads: []*api.Spread{
|
|
|
|
{
|
|
|
|
Attribute: "${meta.rack}",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(100),
|
2018-07-18 17:28:26 +00:00
|
|
|
SpreadTarget: []*api.SpreadTarget{
|
|
|
|
{
|
|
|
|
Value: "r1",
|
|
|
|
Percent: 40,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Value: "r2",
|
|
|
|
Percent: 60,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
Update: &api.UpdateStrategy{
|
2018-03-23 17:56:00 +00:00
|
|
|
Stagger: helper.TimeToPtr(60 * time.Second),
|
|
|
|
MaxParallel: helper.IntToPtr(2),
|
|
|
|
HealthCheck: helper.StringToPtr("manual"),
|
|
|
|
MinHealthyTime: helper.TimeToPtr(10 * time.Second),
|
|
|
|
HealthyDeadline: helper.TimeToPtr(10 * time.Minute),
|
|
|
|
ProgressDeadline: helper.TimeToPtr(10 * time.Minute),
|
|
|
|
AutoRevert: helper.BoolToPtr(true),
|
2019-05-09 13:42:18 +00:00
|
|
|
AutoPromote: helper.BoolToPtr(true),
|
2018-03-23 17:56:00 +00:00
|
|
|
Canary: helper.IntToPtr(1),
|
2015-09-20 21:18:10 +00:00
|
|
|
},
|
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
TaskGroups: []*api.TaskGroup{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("outside"),
|
2019-07-25 14:42:11 +00:00
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:43:42 +00:00
|
|
|
Name: "outside",
|
|
|
|
Driver: "java",
|
2015-11-15 08:10:48 +00:00
|
|
|
Config: map[string]interface{}{
|
2016-04-09 22:38:42 +00:00
|
|
|
"jar_path": "s3://my-cool-store/foo.jar",
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
|
|
|
Meta: map[string]string{
|
|
|
|
"my-cool-key": "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("binsl"),
|
|
|
|
Count: helper.IntToPtr(5),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:43:42 +00:00
|
|
|
LTarget: "kernel.os",
|
|
|
|
RTarget: "linux",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
|
|
|
},
|
2019-08-12 14:22:27 +00:00
|
|
|
Volumes: map[string]*api.VolumeRequest{
|
2019-07-25 14:42:11 +00:00
|
|
|
"foo": {
|
2020-03-23 17:55:26 +00:00
|
|
|
Name: "foo",
|
|
|
|
Type: "host",
|
|
|
|
Source: "/path",
|
|
|
|
ExtraKeysHCL: nil,
|
|
|
|
},
|
|
|
|
"bar": {
|
|
|
|
Name: "bar",
|
|
|
|
Type: "csi",
|
|
|
|
Source: "bar-vol",
|
|
|
|
MountOptions: &api.CSIMountOptions{
|
|
|
|
FSType: "ext4",
|
|
|
|
},
|
|
|
|
ExtraKeysHCL: nil,
|
|
|
|
},
|
|
|
|
"baz": {
|
|
|
|
Name: "baz",
|
|
|
|
Type: "csi",
|
|
|
|
Source: "bar-vol",
|
|
|
|
MountOptions: &api.CSIMountOptions{
|
|
|
|
MountFlags: []string{
|
|
|
|
"ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ExtraKeysHCL: nil,
|
2019-07-25 14:42:11 +00:00
|
|
|
},
|
|
|
|
},
|
2018-07-16 13:30:58 +00:00
|
|
|
Affinities: []*api.Affinity{
|
|
|
|
{
|
|
|
|
LTarget: "${node.datacenter}",
|
|
|
|
RTarget: "dc2",
|
|
|
|
Operand: "=",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(100),
|
2018-07-16 13:30:58 +00:00
|
|
|
},
|
|
|
|
},
|
2015-09-15 00:43:42 +00:00
|
|
|
Meta: map[string]string{
|
|
|
|
"elb_mode": "tcp",
|
|
|
|
"elb_interval": "10",
|
|
|
|
"elb_checks": "3",
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
RestartPolicy: &api.RestartPolicy{
|
|
|
|
Interval: helper.TimeToPtr(10 * time.Minute),
|
|
|
|
Attempts: helper.IntToPtr(5),
|
|
|
|
Delay: helper.TimeToPtr(15 * time.Second),
|
|
|
|
Mode: helper.StringToPtr("delay"),
|
2015-10-30 23:32:05 +00:00
|
|
|
},
|
2018-07-18 17:28:26 +00:00
|
|
|
Spreads: []*api.Spread{
|
|
|
|
{
|
|
|
|
Attribute: "${node.datacenter}",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(50),
|
2018-07-18 17:28:26 +00:00
|
|
|
SpreadTarget: []*api.SpreadTarget{
|
|
|
|
{
|
|
|
|
Value: "dc1",
|
|
|
|
Percent: 50,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Value: "dc2",
|
|
|
|
Percent: 25,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Value: "dc3",
|
|
|
|
Percent: 25,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-18 20:49:01 +00:00
|
|
|
ReschedulePolicy: &api.ReschedulePolicy{
|
|
|
|
Interval: helper.TimeToPtr(12 * time.Hour),
|
|
|
|
Attempts: helper.IntToPtr(5),
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
EphemeralDisk: &api.EphemeralDisk{
|
|
|
|
Sticky: helper.BoolToPtr(true),
|
|
|
|
SizeMB: helper.IntToPtr(150),
|
2016-08-24 18:51:15 +00:00
|
|
|
},
|
2017-05-09 00:44:26 +00:00
|
|
|
Update: &api.UpdateStrategy{
|
2018-03-23 17:56:00 +00:00
|
|
|
MaxParallel: helper.IntToPtr(3),
|
|
|
|
HealthCheck: helper.StringToPtr("checks"),
|
|
|
|
MinHealthyTime: helper.TimeToPtr(1 * time.Second),
|
|
|
|
HealthyDeadline: helper.TimeToPtr(1 * time.Minute),
|
|
|
|
ProgressDeadline: helper.TimeToPtr(1 * time.Minute),
|
|
|
|
AutoRevert: helper.BoolToPtr(false),
|
2019-05-09 13:42:18 +00:00
|
|
|
AutoPromote: helper.BoolToPtr(false),
|
2018-03-23 17:56:00 +00:00
|
|
|
Canary: helper.IntToPtr(2),
|
2017-05-09 00:44:26 +00:00
|
|
|
},
|
2018-01-24 00:47:00 +00:00
|
|
|
Migrate: &api.MigrateStrategy{
|
|
|
|
MaxParallel: helper.IntToPtr(2),
|
|
|
|
HealthCheck: helper.StringToPtr("task_states"),
|
|
|
|
MinHealthyTime: helper.TimeToPtr(11 * time.Second),
|
|
|
|
HealthyDeadline: helper.TimeToPtr(11 * time.Minute),
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:43:42 +00:00
|
|
|
Name: "binstore",
|
|
|
|
Driver: "docker",
|
2016-03-23 11:57:31 +00:00
|
|
|
User: "bob",
|
2019-08-07 23:43:36 +00:00
|
|
|
Kind: "connect-proxy:test",
|
2015-11-15 08:10:48 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-09-15 00:43:42 +00:00
|
|
|
"image": "hashicorp/binstore",
|
2016-04-25 21:58:31 +00:00
|
|
|
"labels": []map[string]interface{}{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2016-04-25 21:58:31 +00:00
|
|
|
"FOO": "bar",
|
|
|
|
},
|
|
|
|
},
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
2019-07-25 14:42:11 +00:00
|
|
|
VolumeMounts: []*api.VolumeMount{
|
|
|
|
{
|
volumes: Add support for mount propagation
This commit introduces support for configuring mount propagation when
mounting volumes with the `volume_mount` stanza on Linux targets.
Similar to Kubernetes, we expose 3 options for configuring mount
propagation:
- private, which is equivalent to `rprivate` on Linux, which does not allow the
container to see any new nested mounts after the chroot was created.
- host-to-task, which is equivalent to `rslave` on Linux, which allows new mounts
that have been created _outside of the container_ to be visible
inside the container after the chroot is created.
- bidirectional, which is equivalent to `rshared` on Linux, which allows both
the container to see new mounts created on the host, but
importantly _allows the container to create mounts that are
visible in other containers an don the host_
private and host-to-task are safe, but bidirectional mounts can be
dangerous, as if the code inside a container creates a mount, and does
not clean it up before tearing down the container, it can cause bad
things to happen inside the kernel.
To add a layer of safety here, we require that the user has ReadWrite
permissions on the volume before allowing bidirectional mounts, as a
defense in depth / validation case, although creating mounts should also require
a priviliged execution environment inside the container.
2019-09-13 21:13:20 +00:00
|
|
|
Volume: helper.StringToPtr("foo"),
|
|
|
|
Destination: helper.StringToPtr("/mnt/foo"),
|
2019-07-25 14:42:11 +00:00
|
|
|
},
|
|
|
|
},
|
2018-07-18 19:16:02 +00:00
|
|
|
Affinities: []*api.Affinity{
|
|
|
|
{
|
|
|
|
LTarget: "${meta.foo}",
|
2018-07-18 19:36:02 +00:00
|
|
|
RTarget: "a,b,c",
|
|
|
|
Operand: "set_contains",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(25),
|
2018-07-18 19:16:02 +00:00
|
|
|
},
|
|
|
|
},
|
2020-03-07 02:52:58 +00:00
|
|
|
RestartPolicy: &api.RestartPolicy{
|
|
|
|
Attempts: helper.IntToPtr(10),
|
|
|
|
},
|
2017-03-01 23:30:01 +00:00
|
|
|
Services: []*api.Service{
|
2015-11-17 06:51:08 +00:00
|
|
|
{
|
2018-04-19 22:12:23 +00:00
|
|
|
Tags: []string{"foo", "bar"},
|
|
|
|
CanaryTags: []string{"canary", "bam"},
|
2019-11-13 03:27:54 +00:00
|
|
|
Meta: map[string]string{
|
|
|
|
"abc": "123",
|
|
|
|
},
|
|
|
|
CanaryMeta: map[string]string{
|
|
|
|
"canary": "boom",
|
|
|
|
},
|
|
|
|
PortLabel: "http",
|
2017-02-22 20:30:05 +00:00
|
|
|
Checks: []api.ServiceCheck{
|
2015-11-17 06:51:08 +00:00
|
|
|
{
|
2018-05-03 22:18:12 +00:00
|
|
|
Name: "check-name",
|
|
|
|
Type: "tcp",
|
|
|
|
PortLabel: "admin",
|
|
|
|
Interval: 10 * time.Second,
|
|
|
|
Timeout: 2 * time.Second,
|
|
|
|
GRPCService: "foo.Bar",
|
|
|
|
GRPCUseTLS: true,
|
2017-09-14 22:55:37 +00:00
|
|
|
CheckRestart: &api.CheckRestart{
|
|
|
|
Limit: 3,
|
|
|
|
Grace: helper.TimeToPtr(10 * time.Second),
|
|
|
|
IgnoreWarnings: true,
|
|
|
|
},
|
2015-11-17 06:51:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-09-30 16:18:43 +00:00
|
|
|
Env: map[string]string{
|
|
|
|
"HELLO": "world",
|
|
|
|
"LOREM": "ipsum",
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Resources: &api.Resources{
|
|
|
|
CPU: helper.IntToPtr(500),
|
|
|
|
MemoryMB: helper.IntToPtr(128),
|
|
|
|
Networks: []*api.NetworkResource{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
MBits: helper.IntToPtr(100),
|
2017-02-28 00:00:19 +00:00
|
|
|
ReservedPorts: []api.Port{{Label: "one", Value: 1}, {Label: "two", Value: 2}, {Label: "three", Value: 3}},
|
|
|
|
DynamicPorts: []api.Port{{Label: "http", Value: 0}, {Label: "https", Value: 0}, {Label: "admin", Value: 0}},
|
2015-09-15 01:27:37 +00:00
|
|
|
},
|
|
|
|
},
|
2018-10-08 23:09:41 +00:00
|
|
|
Devices: []*api.RequestedDevice{
|
|
|
|
{
|
|
|
|
Name: "nvidia/gpu",
|
|
|
|
Count: helper.Uint64ToPtr(10),
|
2018-10-11 21:05:19 +00:00
|
|
|
Constraints: []*api.Constraint{
|
|
|
|
{
|
2019-01-23 00:48:09 +00:00
|
|
|
LTarget: "${device.attr.memory}",
|
2018-10-11 21:05:19 +00:00
|
|
|
RTarget: "2GB",
|
|
|
|
Operand: ">",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Affinities: []*api.Affinity{
|
|
|
|
{
|
2019-01-23 00:48:09 +00:00
|
|
|
LTarget: "${device.model}",
|
2018-10-11 21:05:19 +00:00
|
|
|
RTarget: "1080ti",
|
|
|
|
Operand: "=",
|
2019-01-30 20:20:38 +00:00
|
|
|
Weight: helper.Int8ToPtr(50),
|
2018-10-11 21:05:19 +00:00
|
|
|
},
|
|
|
|
},
|
2018-10-08 23:09:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "intel/gpu",
|
|
|
|
Count: nil,
|
|
|
|
},
|
|
|
|
},
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
2017-08-17 00:54:11 +00:00
|
|
|
KillTimeout: helper.TimeToPtr(22 * time.Second),
|
|
|
|
ShutdownDelay: 11 * time.Second,
|
2017-02-22 20:30:05 +00:00
|
|
|
LogConfig: &api.LogConfig{
|
|
|
|
MaxFiles: helper.IntToPtr(14),
|
|
|
|
MaxFileSizeMB: helper.IntToPtr(101),
|
2016-02-05 07:28:01 +00:00
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Artifacts: []*api.TaskArtifact{
|
2016-03-14 18:13:43 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
GetterSource: helper.StringToPtr("http://foo.com/artifact"),
|
2016-03-14 22:46:06 +00:00
|
|
|
GetterOptions: map[string]string{
|
|
|
|
"checksum": "md5:b8a4f3f72ecab0510a6a31e997461c5f",
|
2016-03-14 18:13:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
GetterSource: helper.StringToPtr("http://bar.com/artifact"),
|
|
|
|
RelativeDest: helper.StringToPtr("test/foo/"),
|
2016-03-14 22:46:06 +00:00
|
|
|
GetterOptions: map[string]string{
|
|
|
|
"checksum": "md5:ff1cc0d3432dad54d607c1505fb7245c",
|
2016-03-14 18:13:43 +00:00
|
|
|
},
|
2017-07-06 03:44:49 +00:00
|
|
|
GetterMode: helper.StringToPtr("file"),
|
2016-03-14 18:13:43 +00:00
|
|
|
},
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Vault: &api.Vault{
|
2016-10-11 22:25:49 +00:00
|
|
|
Policies: []string{"foo", "bar"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Env: helper.BoolToPtr(true),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.VaultChangeModeRestart),
|
2016-08-09 23:07:45 +00:00
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Templates: []*api.Template{
|
2016-09-26 22:23:26 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
SourcePath: helper.StringToPtr("foo"),
|
|
|
|
DestPath: helper.StringToPtr("foo"),
|
|
|
|
ChangeMode: helper.StringToPtr("foo"),
|
|
|
|
ChangeSignal: helper.StringToPtr("foo"),
|
|
|
|
Splay: helper.TimeToPtr(10 * time.Second),
|
|
|
|
Perms: helper.StringToPtr("0644"),
|
2017-05-26 22:31:40 +00:00
|
|
|
Envvars: helper.BoolToPtr(true),
|
2020-03-10 21:55:16 +00:00
|
|
|
VaultGrace: helper.TimeToPtr(33 * time.Second),
|
2016-09-26 22:23:26 +00:00
|
|
|
},
|
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
SourcePath: helper.StringToPtr("bar"),
|
|
|
|
DestPath: helper.StringToPtr("bar"),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.TemplateChangeModeRestart),
|
|
|
|
Splay: helper.TimeToPtr(5 * time.Second),
|
|
|
|
Perms: helper.StringToPtr("777"),
|
|
|
|
LeftDelim: helper.StringToPtr("--"),
|
|
|
|
RightDelim: helper.StringToPtr("__"),
|
2016-09-26 22:23:26 +00:00
|
|
|
},
|
|
|
|
},
|
2017-12-06 18:50:22 +00:00
|
|
|
Leader: true,
|
|
|
|
KillSignal: "",
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:43:42 +00:00
|
|
|
Name: "storagelocker",
|
2016-04-09 22:38:42 +00:00
|
|
|
Driver: "docker",
|
2016-03-23 11:57:31 +00:00
|
|
|
User: "",
|
2019-10-11 17:10:45 +00:00
|
|
|
Lifecycle: &api.TaskLifecycle{
|
2020-03-21 22:25:13 +00:00
|
|
|
Hook: "prestart",
|
|
|
|
Sidecar: true,
|
2019-10-11 17:10:45 +00:00
|
|
|
},
|
2015-11-15 08:10:48 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-09-15 00:43:42 +00:00
|
|
|
"image": "hashicorp/storagelocker",
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Resources: &api.Resources{
|
|
|
|
CPU: helper.IntToPtr(500),
|
|
|
|
MemoryMB: helper.IntToPtr(128),
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-09-15 00:50:34 +00:00
|
|
|
LTarget: "kernel.arch",
|
|
|
|
RTarget: "amd64",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
|
|
|
},
|
2017-02-22 20:30:05 +00:00
|
|
|
Vault: &api.Vault{
|
2016-10-11 22:25:49 +00:00
|
|
|
Policies: []string{"foo", "bar"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Env: helper.BoolToPtr(false),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.VaultChangeModeSignal),
|
|
|
|
ChangeSignal: helper.StringToPtr("SIGUSR1"),
|
2016-10-11 22:25:49 +00:00
|
|
|
},
|
2015-09-15 00:43:42 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2015-09-15 01:30:26 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"multi-network.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"multi-resource.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2015-09-15 01:34:26 +00:00
|
|
|
|
2016-08-09 23:07:45 +00:00
|
|
|
{
|
|
|
|
"multi-vault.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2015-09-15 01:34:26 +00:00
|
|
|
{
|
|
|
|
"default-job.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
2015-09-15 01:34:26 +00:00
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2015-09-17 05:06:55 +00:00
|
|
|
|
2015-10-11 19:20:58 +00:00
|
|
|
{
|
|
|
|
"version-constraint.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-10-11 19:20:58 +00:00
|
|
|
LTarget: "$attr.kernel.version",
|
|
|
|
RTarget: "~> 3.2",
|
2015-10-26 20:47:56 +00:00
|
|
|
Operand: structs.ConstraintVersion,
|
2015-10-11 19:20:58 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-10-11 19:37:50 +00:00
|
|
|
{
|
|
|
|
"regexp-constraint.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-10-11 19:37:50 +00:00
|
|
|
LTarget: "$attr.kernel.version",
|
|
|
|
RTarget: "[0-9.]+",
|
2015-10-26 20:47:56 +00:00
|
|
|
Operand: structs.ConstraintRegex,
|
2015-10-11 19:37:50 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2016-10-19 20:06:28 +00:00
|
|
|
{
|
|
|
|
"set-contains-constraint.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2016-10-19 20:06:28 +00:00
|
|
|
LTarget: "$meta.data",
|
|
|
|
RTarget: "foo,bar,baz",
|
|
|
|
Operand: structs.ConstraintSetContains,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-10-22 23:37:20 +00:00
|
|
|
{
|
2015-10-23 00:40:41 +00:00
|
|
|
"distinctHosts-constraint.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-10-26 20:47:56 +00:00
|
|
|
Operand: structs.ConstraintDistinctHosts,
|
2015-10-22 23:37:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2017-03-07 22:20:02 +00:00
|
|
|
{
|
|
|
|
"distinctProperty-constraint.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Constraints: []*api.Constraint{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-03-07 22:20:02 +00:00
|
|
|
Operand: structs.ConstraintDistinctProperty,
|
|
|
|
LTarget: "${meta.rack}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-12-01 00:51:56 +00:00
|
|
|
{
|
|
|
|
"periodic-cron.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Periodic: &api.PeriodicConfig{
|
|
|
|
SpecType: helper.StringToPtr(api.PeriodicSpecCron),
|
|
|
|
Spec: helper.StringToPtr("*/5 * * *"),
|
|
|
|
ProhibitOverlap: helper.BoolToPtr(true),
|
|
|
|
TimeZone: helper.StringToPtr("Europe/Minsk"),
|
2015-12-01 00:51:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-09-17 05:06:55 +00:00
|
|
|
{
|
|
|
|
"specify-job.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("job1"),
|
|
|
|
Name: helper.StringToPtr("My Job"),
|
2015-09-17 05:06:55 +00:00
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2015-11-16 18:00:06 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"task-nested-config.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("bar"),
|
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-11-16 18:00:06 +00:00
|
|
|
Name: "bar",
|
|
|
|
Driver: "docker",
|
|
|
|
Config: map[string]interface{}{
|
2016-04-09 22:38:42 +00:00
|
|
|
"image": "hashicorp/image",
|
2015-11-16 18:00:06 +00:00
|
|
|
"port_map": []map[string]interface{}{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2015-11-16 18:00:06 +00:00
|
|
|
"db": 1234,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2016-04-09 22:38:42 +00:00
|
|
|
|
2016-03-16 03:21:52 +00:00
|
|
|
{
|
|
|
|
"bad-artifact.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2016-03-18 19:01:46 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"artifacts.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
Name: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("binsl"),
|
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2016-03-18 19:01:46 +00:00
|
|
|
Name: "binstore",
|
|
|
|
Driver: "docker",
|
2017-02-22 20:30:05 +00:00
|
|
|
Artifacts: []*api.TaskArtifact{
|
2016-03-18 19:01:46 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
GetterSource: helper.StringToPtr("http://foo.com/bar"),
|
2016-06-10 19:28:27 +00:00
|
|
|
GetterOptions: map[string]string{"foo": "bar"},
|
2017-02-22 20:30:05 +00:00
|
|
|
RelativeDest: helper.StringToPtr(""),
|
2016-03-18 19:01:46 +00:00
|
|
|
},
|
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
GetterSource: helper.StringToPtr("http://foo.com/baz"),
|
2016-06-10 19:28:27 +00:00
|
|
|
GetterOptions: nil,
|
2017-02-22 20:30:05 +00:00
|
|
|
RelativeDest: nil,
|
2016-03-18 19:01:46 +00:00
|
|
|
},
|
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
GetterSource: helper.StringToPtr("http://foo.com/bam"),
|
2016-06-10 19:28:27 +00:00
|
|
|
GetterOptions: nil,
|
2017-02-22 20:30:05 +00:00
|
|
|
RelativeDest: helper.StringToPtr("var/foo"),
|
2016-03-18 19:01:46 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2019-10-22 13:20:26 +00:00
|
|
|
{
|
|
|
|
"csi-plugin.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
Name: helper.StringToPtr("binstore-storagelocker"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("binsl"),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "binstore",
|
|
|
|
Driver: "docker",
|
|
|
|
CSIPluginConfig: &api.TaskCSIPluginConfig{
|
|
|
|
ID: "org.hashicorp.csi",
|
|
|
|
Type: api.CSIPluginTypeMonolith,
|
|
|
|
MountDir: "/csi/test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2016-08-16 21:34:36 +00:00
|
|
|
{
|
|
|
|
"service-check-initial-status.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("check_initial_status"),
|
|
|
|
Name: helper.StringToPtr("check_initial_status"),
|
|
|
|
Type: helper.StringToPtr("service"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Count: helper.IntToPtr(1),
|
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2016-08-16 21:34:36 +00:00
|
|
|
Name: "task",
|
2017-03-01 23:30:01 +00:00
|
|
|
Services: []*api.Service{
|
2016-08-16 21:34:36 +00:00
|
|
|
{
|
|
|
|
Tags: []string{"foo", "bar"},
|
|
|
|
PortLabel: "http",
|
2017-02-22 20:30:05 +00:00
|
|
|
Checks: []api.ServiceCheck{
|
2016-08-16 21:34:36 +00:00
|
|
|
{
|
|
|
|
Name: "check-name",
|
|
|
|
Type: "http",
|
2017-08-16 00:17:11 +00:00
|
|
|
Path: "/",
|
2016-08-16 21:34:36 +00:00
|
|
|
Interval: 10 * time.Second,
|
|
|
|
Timeout: 2 * time.Second,
|
2017-02-22 20:30:05 +00:00
|
|
|
InitialStatus: capi.HealthPassing,
|
2017-08-16 00:17:11 +00:00
|
|
|
Method: "POST",
|
|
|
|
Header: map[string][]string{
|
|
|
|
"Authorization": {"Basic ZWxhc3RpYzpjaGFuZ2VtZQ=="},
|
|
|
|
},
|
2016-08-16 21:34:36 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2017-08-17 22:25:51 +00:00
|
|
|
{
|
|
|
|
"service-check-bad-header.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"service-check-bad-header-2.hcl",
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2016-09-21 18:18:44 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
// TODO This should be pushed into the API
|
2016-09-21 18:18:44 +00:00
|
|
|
"vault_inheritance.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("example"),
|
|
|
|
Name: helper.StringToPtr("example"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("cache"),
|
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: "redis",
|
|
|
|
Vault: &api.Vault{
|
2016-10-11 22:25:49 +00:00
|
|
|
Policies: []string{"group"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Env: helper.BoolToPtr(true),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.VaultChangeModeRestart),
|
2016-09-21 18:18:44 +00:00
|
|
|
},
|
|
|
|
},
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: "redis2",
|
|
|
|
Vault: &api.Vault{
|
2016-10-11 22:25:49 +00:00
|
|
|
Policies: []string{"task"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Env: helper.BoolToPtr(false),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.VaultChangeModeRestart),
|
2016-09-21 18:18:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: helper.StringToPtr("cache2"),
|
|
|
|
Tasks: []*api.Task{
|
2017-09-26 22:26:33 +00:00
|
|
|
{
|
2017-02-22 20:30:05 +00:00
|
|
|
Name: "redis",
|
|
|
|
Vault: &api.Vault{
|
2016-10-11 22:25:49 +00:00
|
|
|
Policies: []string{"job"},
|
2017-02-22 20:30:05 +00:00
|
|
|
Env: helper.BoolToPtr(true),
|
|
|
|
ChangeMode: helper.StringToPtr(structs.VaultChangeModeRestart),
|
2016-09-21 18:18:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2016-11-23 23:48:36 +00:00
|
|
|
{
|
2017-01-20 18:33:52 +00:00
|
|
|
"parameterized_job.hcl",
|
2017-02-22 20:30:05 +00:00
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("parameterized_job"),
|
|
|
|
Name: helper.StringToPtr("parameterized_job"),
|
|
|
|
|
|
|
|
ParameterizedJob: &api.ParameterizedJobConfig{
|
2016-12-14 20:50:08 +00:00
|
|
|
Payload: "required",
|
2016-11-23 23:48:36 +00:00
|
|
|
MetaRequired: []string{"foo", "bar"},
|
|
|
|
MetaOptional: []string{"baz", "bam"},
|
|
|
|
},
|
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
2016-11-23 23:48:36 +00:00
|
|
|
Name: "bar",
|
|
|
|
Driver: "docker",
|
2017-02-22 20:30:05 +00:00
|
|
|
DispatchPayload: &api.DispatchPayloadConfig{
|
2016-12-14 20:50:08 +00:00
|
|
|
File: "foo/bar",
|
2016-11-23 23:48:36 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2017-11-30 21:53:35 +00:00
|
|
|
{
|
|
|
|
"job-with-kill-signal.hcl",
|
|
|
|
&api.Job{
|
2017-12-06 21:23:24 +00:00
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
2017-11-30 21:53:35 +00:00
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
2017-12-06 21:23:24 +00:00
|
|
|
Name: helper.StringToPtr("bar"),
|
2017-11-30 21:53:35 +00:00
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
2017-12-06 21:23:24 +00:00
|
|
|
Name: "bar",
|
2017-11-30 21:53:35 +00:00
|
|
|
Driver: "docker",
|
2017-12-06 21:23:24 +00:00
|
|
|
KillSignal: "SIGQUIT",
|
2017-11-30 21:53:35 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"image": "hashicorp/image",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2017-12-05 19:39:42 +00:00
|
|
|
{
|
|
|
|
"service-check-driver-address.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("address_mode_driver"),
|
|
|
|
Name: helper.StringToPtr("address_mode_driver"),
|
|
|
|
Type: helper.StringToPtr("service"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "task",
|
|
|
|
Services: []*api.Service{
|
|
|
|
{
|
|
|
|
Name: "http-service",
|
|
|
|
PortLabel: "http",
|
|
|
|
AddressMode: "auto",
|
|
|
|
Checks: []api.ServiceCheck{
|
|
|
|
{
|
|
|
|
Name: "http-check",
|
|
|
|
Type: "http",
|
|
|
|
Path: "/",
|
|
|
|
PortLabel: "http",
|
|
|
|
AddressMode: "driver",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "random-service",
|
|
|
|
PortLabel: "9000",
|
|
|
|
AddressMode: "driver",
|
|
|
|
Checks: []api.ServiceCheck{
|
|
|
|
{
|
|
|
|
Name: "random-check",
|
|
|
|
Type: "tcp",
|
|
|
|
PortLabel: "9001",
|
|
|
|
AddressMode: "driver",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2018-01-04 23:04:45 +00:00
|
|
|
{
|
|
|
|
"service-check-restart.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("service_check_restart"),
|
|
|
|
Name: helper.StringToPtr("service_check_restart"),
|
|
|
|
Type: helper.StringToPtr("service"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "task",
|
|
|
|
Services: []*api.Service{
|
|
|
|
{
|
|
|
|
Name: "http-service",
|
|
|
|
CheckRestart: &api.CheckRestart{
|
|
|
|
Limit: 3,
|
|
|
|
Grace: helper.TimeToPtr(10 * time.Second),
|
|
|
|
IgnoreWarnings: true,
|
|
|
|
},
|
|
|
|
Checks: []api.ServiceCheck{
|
|
|
|
{
|
|
|
|
Name: "random-check",
|
|
|
|
Type: "tcp",
|
|
|
|
PortLabel: "9001",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2019-08-23 16:49:02 +00:00
|
|
|
{
|
|
|
|
"service-meta.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("service_meta"),
|
|
|
|
Name: helper.StringToPtr("service_meta"),
|
|
|
|
Type: helper.StringToPtr("service"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "task",
|
|
|
|
Services: []*api.Service{
|
|
|
|
{
|
|
|
|
Name: "http-service",
|
|
|
|
Meta: map[string]string{
|
|
|
|
"foo": "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
client: enable configuring enable_tag_override for services
Consul provides a feature of Service Definitions where the tags
associated with a service can be modified through the Catalog API,
overriding the value(s) configured in the agent's service configuration.
To enable this feature, the flag enable_tag_override must be configured
in the service definition.
Previously, Nomad did not allow configuring this flag, and thus the default
value of false was used. Now, it is configurable.
Because Nomad itself acts as a state machine around the the service definitions
of the tasks it manages, it's worth describing what happens when this feature
is enabled and why.
Consider the basic case where there is no Nomad, and your service is provided
to consul as a boring JSON file. The ultimate source of truth for the definition
of that service is the file, and is stored in the agent. Later, Consul performs
"anti-entropy" which synchronizes the Catalog (stored only the leaders). Then
with enable_tag_override=true, the tags field is available for "external"
modification through the Catalog API (rather than directly configuring the
service definition file, or using the Agent API). The important observation
is that if the service definition ever changes (i.e. the file is changed &
config reloaded OR the Agent API is used to modify the service), those
"external" tag values are thrown away, and the new service definition is
once again the source of truth.
In the Nomad case, Nomad itself is the source of truth over the Agent in
the same way the JSON file was the source of truth in the example above.
That means any time Nomad sets a new service definition, any externally
configured tags are going to be replaced. When does this happen? Only on
major lifecycle events, for example when a task is modified because of an
updated job spec from the 'nomad job run <existing>' command. Otherwise,
Nomad's periodic re-sync's with Consul will now no longer try to restore
the externally modified tag values (as long as enable_tag_override=true).
Fixes #2057
2020-02-07 21:22:19 +00:00
|
|
|
{
|
|
|
|
"service-enable-tag-override.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("service_eto"),
|
|
|
|
Name: helper.StringToPtr("service_eto"),
|
|
|
|
Type: helper.StringToPtr("service"),
|
|
|
|
TaskGroups: []*api.TaskGroup{{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Tasks: []*api.Task{{
|
|
|
|
Name: "task",
|
|
|
|
Services: []*api.Service{{
|
|
|
|
Name: "example",
|
|
|
|
EnableTagOverride: true,
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2018-01-18 20:49:01 +00:00
|
|
|
{
|
|
|
|
"reschedule-job.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Type: helper.StringToPtr("batch"),
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
Reschedule: &api.ReschedulePolicy{
|
2018-03-07 21:26:45 +00:00
|
|
|
Attempts: helper.IntToPtr(15),
|
|
|
|
Interval: helper.TimeToPtr(30 * time.Minute),
|
2018-03-26 19:45:09 +00:00
|
|
|
DelayFunction: helper.StringToPtr("constant"),
|
2018-03-07 21:26:45 +00:00
|
|
|
Delay: helper.TimeToPtr(10 * time.Second),
|
|
|
|
},
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("bar"),
|
|
|
|
Count: helper.IntToPtr(3),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "bar",
|
|
|
|
Driver: "raw_exec",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "bash",
|
|
|
|
"args": []interface{}{"-c", "echo hi"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"reschedule-job-unlimited.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Type: helper.StringToPtr("batch"),
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
Reschedule: &api.ReschedulePolicy{
|
|
|
|
DelayFunction: helper.StringToPtr("exponential"),
|
|
|
|
Delay: helper.TimeToPtr(10 * time.Second),
|
2018-03-13 15:06:26 +00:00
|
|
|
MaxDelay: helper.TimeToPtr(120 * time.Second),
|
2018-03-07 21:26:45 +00:00
|
|
|
Unlimited: helper.BoolToPtr(true),
|
2018-01-18 20:49:01 +00:00
|
|
|
},
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("bar"),
|
|
|
|
Count: helper.IntToPtr(3),
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "bar",
|
|
|
|
Driver: "raw_exec",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "bash",
|
|
|
|
"args": []interface{}{"-c", "echo hi"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2018-03-01 19:21:32 +00:00
|
|
|
{
|
|
|
|
"migrate-job.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Type: helper.StringToPtr("batch"),
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
Migrate: &api.MigrateStrategy{
|
|
|
|
MaxParallel: helper.IntToPtr(2),
|
|
|
|
HealthCheck: helper.StringToPtr("task_states"),
|
|
|
|
MinHealthyTime: helper.TimeToPtr(11 * time.Second),
|
|
|
|
HealthyDeadline: helper.TimeToPtr(11 * time.Minute),
|
|
|
|
},
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("bar"),
|
|
|
|
Count: helper.IntToPtr(3),
|
|
|
|
Migrate: &api.MigrateStrategy{
|
|
|
|
MaxParallel: helper.IntToPtr(3),
|
|
|
|
HealthCheck: helper.StringToPtr("checks"),
|
|
|
|
MinHealthyTime: helper.TimeToPtr(1 * time.Second),
|
|
|
|
HealthyDeadline: helper.TimeToPtr(1 * time.Minute),
|
|
|
|
},
|
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "bar",
|
|
|
|
Driver: "raw_exec",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "bash",
|
|
|
|
"args": []interface{}{"-c", "echo hi"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2019-04-29 17:15:12 +00:00
|
|
|
{
|
|
|
|
"tg-network.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("foo"),
|
|
|
|
Name: helper.StringToPtr("foo"),
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
2019-11-18 16:16:25 +00:00
|
|
|
Name: helper.StringToPtr("bar"),
|
|
|
|
ShutdownDelay: helper.TimeToPtr(14 * time.Second),
|
|
|
|
Count: helper.IntToPtr(3),
|
2019-04-29 17:15:12 +00:00
|
|
|
Networks: []*api.NetworkResource{
|
|
|
|
{
|
|
|
|
Mode: "bridge",
|
|
|
|
ReservedPorts: []api.Port{
|
|
|
|
{
|
|
|
|
Label: "http",
|
|
|
|
Value: 80,
|
|
|
|
To: 8080,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-07-30 22:40:45 +00:00
|
|
|
Services: []*api.Service{
|
|
|
|
{
|
|
|
|
Name: "connect-service",
|
|
|
|
Tags: []string{"foo", "bar"},
|
|
|
|
CanaryTags: []string{"canary", "bam"},
|
|
|
|
PortLabel: "1234",
|
|
|
|
Connect: &api.ConsulConnect{
|
|
|
|
SidecarService: &api.ConsulSidecarService{
|
2019-10-08 19:19:09 +00:00
|
|
|
Tags: []string{"side1", "side2"},
|
2019-07-30 22:40:45 +00:00
|
|
|
Proxy: &api.ConsulProxy{
|
|
|
|
Upstreams: []*api.ConsulUpstream{
|
|
|
|
{
|
|
|
|
DestinationName: "other-service",
|
|
|
|
LocalBindPort: 4567,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-08-20 05:22:46 +00:00
|
|
|
SidecarTask: &api.SidecarTask{
|
2019-08-09 19:18:53 +00:00
|
|
|
Resources: &api.Resources{
|
|
|
|
CPU: helper.IntToPtr(500),
|
|
|
|
MemoryMB: helper.IntToPtr(1024),
|
|
|
|
},
|
|
|
|
Env: map[string]string{
|
|
|
|
"FOO": "abc",
|
|
|
|
},
|
2019-08-20 05:22:46 +00:00
|
|
|
ShutdownDelay: helper.TimeToPtr(5 * time.Second),
|
2019-08-09 19:18:53 +00:00
|
|
|
},
|
2019-07-30 22:40:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-04-29 17:15:12 +00:00
|
|
|
Tasks: []*api.Task{
|
|
|
|
{
|
|
|
|
Name: "bar",
|
|
|
|
Driver: "raw_exec",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "bash",
|
|
|
|
"args": []interface{}{"-c", "echo hi"},
|
|
|
|
},
|
|
|
|
Resources: &api.Resources{
|
|
|
|
Networks: []*api.NetworkResource{
|
|
|
|
{
|
|
|
|
MBits: helper.IntToPtr(10),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2019-08-19 13:17:38 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"tg-service-check.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("group_service_check_script"),
|
|
|
|
Name: helper.StringToPtr("group_service_check_script"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Count: helper.IntToPtr(1),
|
|
|
|
Networks: []*api.NetworkResource{
|
|
|
|
{
|
|
|
|
Mode: "bridge",
|
|
|
|
ReservedPorts: []api.Port{
|
|
|
|
{
|
|
|
|
Label: "http",
|
|
|
|
Value: 80,
|
|
|
|
To: 8080,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Services: []*api.Service{
|
|
|
|
{
|
|
|
|
Name: "foo-service",
|
|
|
|
PortLabel: "http",
|
|
|
|
Checks: []api.ServiceCheck{
|
|
|
|
{
|
|
|
|
Name: "check-name",
|
|
|
|
Type: "script",
|
|
|
|
Command: "/bin/true",
|
|
|
|
Interval: time.Duration(10 * time.Second),
|
|
|
|
Timeout: time.Duration(2 * time.Second),
|
|
|
|
InitialStatus: "passing",
|
|
|
|
TaskName: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Tasks: []*api.Task{{Name: "foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2020-03-07 03:15:22 +00:00
|
|
|
{
|
|
|
|
"tg-service-proxy-expose.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("group_service_proxy_expose"),
|
|
|
|
Name: helper.StringToPtr("group_service_proxy_expose"),
|
|
|
|
TaskGroups: []*api.TaskGroup{{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Services: []*api.Service{{
|
|
|
|
Name: "example",
|
|
|
|
Connect: &api.ConsulConnect{
|
|
|
|
SidecarService: &api.ConsulSidecarService{
|
|
|
|
Proxy: &api.ConsulProxy{
|
|
|
|
ExposeConfig: &api.ConsulExposeConfig{
|
|
|
|
Paths: []*api.ConsulExposePath{{
|
|
|
|
Path: "/health",
|
|
|
|
Protocol: "http",
|
|
|
|
LocalPathPort: 2222,
|
|
|
|
ListenerPort: "healthcheck",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
client: enable configuring enable_tag_override for services
Consul provides a feature of Service Definitions where the tags
associated with a service can be modified through the Catalog API,
overriding the value(s) configured in the agent's service configuration.
To enable this feature, the flag enable_tag_override must be configured
in the service definition.
Previously, Nomad did not allow configuring this flag, and thus the default
value of false was used. Now, it is configurable.
Because Nomad itself acts as a state machine around the the service definitions
of the tasks it manages, it's worth describing what happens when this feature
is enabled and why.
Consider the basic case where there is no Nomad, and your service is provided
to consul as a boring JSON file. The ultimate source of truth for the definition
of that service is the file, and is stored in the agent. Later, Consul performs
"anti-entropy" which synchronizes the Catalog (stored only the leaders). Then
with enable_tag_override=true, the tags field is available for "external"
modification through the Catalog API (rather than directly configuring the
service definition file, or using the Agent API). The important observation
is that if the service definition ever changes (i.e. the file is changed &
config reloaded OR the Agent API is used to modify the service), those
"external" tag values are thrown away, and the new service definition is
once again the source of truth.
In the Nomad case, Nomad itself is the source of truth over the Agent in
the same way the JSON file was the source of truth in the example above.
That means any time Nomad sets a new service definition, any externally
configured tags are going to be replaced. When does this happen? Only on
major lifecycle events, for example when a task is modified because of an
updated job spec from the 'nomad job run <existing>' command. Otherwise,
Nomad's periodic re-sync's with Consul will now no longer try to restore
the externally modified tag values (as long as enable_tag_override=true).
Fixes #2057
2020-02-07 21:22:19 +00:00
|
|
|
{
|
|
|
|
"tg-service-enable-tag-override.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("group_service_eto"),
|
|
|
|
Name: helper.StringToPtr("group_service_eto"),
|
|
|
|
TaskGroups: []*api.TaskGroup{{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Services: []*api.Service{{
|
|
|
|
Name: "example",
|
|
|
|
EnableTagOverride: true,
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2020-01-16 15:44:40 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"tg-scaling-policy.hcl",
|
|
|
|
&api.Job{
|
|
|
|
ID: helper.StringToPtr("elastic"),
|
|
|
|
Name: helper.StringToPtr("elastic"),
|
|
|
|
TaskGroups: []*api.TaskGroup{
|
|
|
|
{
|
|
|
|
Name: helper.StringToPtr("group"),
|
|
|
|
Scaling: &api.ScalingPolicy{
|
2020-03-24 19:28:24 +00:00
|
|
|
Min: helper.Int64ToPtr(5),
|
|
|
|
Max: 100,
|
2020-01-16 15:44:40 +00:00
|
|
|
Policy: map[string]interface{}{
|
|
|
|
"foo": "bar",
|
|
|
|
"b": true,
|
|
|
|
"val": 5,
|
|
|
|
"f": .1,
|
|
|
|
},
|
|
|
|
Enabled: helper.BoolToPtr(false),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
2015-09-15 00:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
2015-11-09 06:57:39 +00:00
|
|
|
t.Logf("Testing parse: %s", tc.File)
|
|
|
|
|
2015-09-15 00:43:42 +00:00
|
|
|
path, err := filepath.Abs(filepath.Join("./test-fixtures", tc.File))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("file: %s\n\n%s", tc.File, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-02-22 20:30:05 +00:00
|
|
|
actual, err := ParseFile(path)
|
2015-09-15 00:43:42 +00:00
|
|
|
if (err != nil) != tc.Err {
|
|
|
|
t.Fatalf("file: %s\n\n%s", tc.File, err)
|
|
|
|
continue
|
|
|
|
}
|
2017-02-22 20:30:05 +00:00
|
|
|
|
|
|
|
if !reflect.DeepEqual(actual, tc.Result) {
|
|
|
|
for _, d := range pretty.Diff(actual, tc.Result) {
|
|
|
|
t.Logf(d)
|
|
|
|
}
|
|
|
|
t.Fatalf("file: %s", tc.File)
|
|
|
|
}
|
2015-09-15 00:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-23 20:44:08 +00:00
|
|
|
|
|
|
|
func TestBadPorts(t *testing.T) {
|
|
|
|
path, err := filepath.Abs(filepath.Join("./test-fixtures", "bad-ports.hcl"))
|
|
|
|
if err != nil {
|
2016-04-09 22:38:42 +00:00
|
|
|
t.Fatalf("Can't get absolute path for file: %s", err)
|
2015-09-23 20:44:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = ParseFile(path)
|
|
|
|
|
2015-11-15 08:10:48 +00:00
|
|
|
if !strings.Contains(err.Error(), errPortLabel.Error()) {
|
|
|
|
t.Fatalf("\nExpected error\n %s\ngot\n %v", errPortLabel, err)
|
2015-09-23 20:44:08 +00:00
|
|
|
}
|
2015-09-26 01:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverlappingPorts(t *testing.T) {
|
|
|
|
path, err := filepath.Abs(filepath.Join("./test-fixtures", "overlapping-ports.hcl"))
|
|
|
|
if err != nil {
|
2015-11-18 01:12:21 +00:00
|
|
|
t.Fatalf("Can't get absolute path for file: %s", err)
|
2015-09-26 01:59:17 +00:00
|
|
|
}
|
2015-09-23 20:44:08 +00:00
|
|
|
|
2015-09-26 01:59:17 +00:00
|
|
|
_, err = ParseFile(path)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("Expected an error")
|
|
|
|
}
|
|
|
|
|
2015-12-18 20:33:38 +00:00
|
|
|
if !strings.Contains(err.Error(), "found a port label collision") {
|
2015-09-26 01:59:17 +00:00
|
|
|
t.Fatalf("Expected collision error; got %v", err)
|
|
|
|
}
|
2015-09-23 20:44:08 +00:00
|
|
|
}
|
2015-11-18 01:06:29 +00:00
|
|
|
|
2016-03-10 18:16:35 +00:00
|
|
|
func TestIncorrectKey(t *testing.T) {
|
|
|
|
path, err := filepath.Abs(filepath.Join("./test-fixtures", "basic_wrong_key.hcl"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't get absolute path for file: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = ParseFile(path)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("Expected an error")
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:18:53 +00:00
|
|
|
if !strings.Contains(err.Error(), "* group: 'binsl', task: 'binstore', service (0): 'foo', check -> invalid key: nterval") {
|
2017-02-22 20:30:05 +00:00
|
|
|
t.Fatalf("Expected key error; got %v", err)
|
2016-03-10 18:16:35 +00:00
|
|
|
}
|
|
|
|
}
|