open-nomad/jobspec/test-fixtures/basic.hcl

363 lines
6.2 KiB
HCL
Raw Normal View History

2015-09-15 00:43:42 +00:00
job "binstore-storagelocker" {
2020-02-03 17:15:37 +00:00
region = "fooregion"
namespace = "foonamespace"
type = "batch"
priority = 52
all_at_once = true
datacenters = ["us2", "eu1"]
consul_token = "abc"
2020-02-03 17:15:37 +00:00
vault_token = "foo"
2015-09-15 00:43:42 +00:00
meta {
foo = "bar"
}
2015-09-15 00:46:52 +00:00
constraint {
attribute = "kernel.os"
value = "windows"
}
constraint {
attribute = "${attr.vault.version}"
value = ">= 0.6.1"
operator = "semver"
}
2018-07-16 13:30:58 +00:00
affinity {
attribute = "${meta.team}"
2019-07-20 14:55:07 +00:00
value = "mobile"
operator = "="
weight = 50
2018-07-16 13:30:58 +00:00
}
2019-07-20 14:55:07 +00:00
spread {
attribute = "${meta.rack}"
weight = 100
target "r1" {
percent = 40
}
target "r2" {
percent = 60
}
}
2018-07-18 17:28:26 +00:00
update {
2019-07-20 14:55:07 +00:00
stagger = "60s"
max_parallel = 2
health_check = "manual"
min_healthy_time = "10s"
healthy_deadline = "10m"
2018-03-23 17:56:00 +00:00
progress_deadline = "10m"
2019-07-20 14:55:07 +00:00
auto_revert = true
auto_promote = true
canary = 1
}
task "outside" {
driver = "java"
config {
jar_path = "s3://my-cool-store/foo.jar"
2015-09-15 00:48:11 +00:00
}
meta {
my-cool-key = "foobar"
}
}
group "binsl" {
count = 5
volume "foo" {
csi: add mount_options to volumes and volume requests (#7398) Add mount_options to both the volume definition on registration and to the volume block in the group where the volume is requested. If both are specified, the options provided in the request replace the options defined in the volume. They get passed to the NodePublishVolume, which causes the node plugin to actually mount the volume on the host. Individual tasks just mount bind into the host mounted volume (unchanged behavior). An operator can mount the same volume with different options by specifying it twice in the group context. closes #7007 * nomad/structs/volumes: add MountOptions to volume request * jobspec/test-fixtures/basic.hcl: add mount_options to volume block * jobspec/parse_test: add expected MountOptions * api/tasks: add mount_options * jobspec/parse_group: use hcl decode not mapstructure, mount_options * client/allocrunner/csi_hook: pass MountOptions through client/allocrunner/csi_hook: add a VolumeMountOptions client/allocrunner/csi_hook: drop Options client/allocrunner/csi_hook: use the structs options * client/pluginmanager/csimanager/interface: UsageOptions.MountOptions * client/pluginmanager/csimanager/volume: pass MountOptions in capabilities * plugins/csi/plugin: remove todo 7007 comment * nomad/structs/csi: MountOptions * api/csi: add options to the api for parsing, match structs * plugins/csi/plugin: move VolumeMountOptions to structs * api/csi: use specific type for mount_options * client/allocrunner/csi_hook: merge MountOptions here * rename CSIOptions to CSIMountOptions * client/allocrunner/csi_hook * client/pluginmanager/csimanager/volume * nomad/structs/csi * plugins/csi/fake/client: add PrevVolumeCapability * plugins/csi/plugin * client/pluginmanager/csimanager/volume_test: remove debugging * client/pluginmanager/csimanager/volume: fix odd merging logic * api: rename CSIOptions -> CSIMountOptions * nomad/csi_endpoint: remove a 7007 comment * command/alloc_status: show mount options in the volume list * nomad/structs/csi: include MountOptions in the volume stub * api/csi: add MountOptions to stub * command/volume_status_csi: clean up csiVolMountOption, add it * command/alloc_status: csiVolMountOption lives in volume_csi_status * command/node_status: display mount flags * nomad/structs/volumes: npe * plugins/csi/plugin: npe in ToCSIRepresentation * jobspec/parse_test: expand volume parse test cases * command/agent/job_endpoint: ApiTgToStructsTG needs MountOptions * command/volume_status_csi: copy paste error * jobspec/test-fixtures/basic: hclfmt * command/volume_status_csi: clean up csiVolMountOption
2020-03-23 17:55:26 +00:00
type = "host"
source = "/path"
}
volume "bar" {
type = "csi"
source = "bar-vol"
read_only = true
csi: add mount_options to volumes and volume requests (#7398) Add mount_options to both the volume definition on registration and to the volume block in the group where the volume is requested. If both are specified, the options provided in the request replace the options defined in the volume. They get passed to the NodePublishVolume, which causes the node plugin to actually mount the volume on the host. Individual tasks just mount bind into the host mounted volume (unchanged behavior). An operator can mount the same volume with different options by specifying it twice in the group context. closes #7007 * nomad/structs/volumes: add MountOptions to volume request * jobspec/test-fixtures/basic.hcl: add mount_options to volume block * jobspec/parse_test: add expected MountOptions * api/tasks: add mount_options * jobspec/parse_group: use hcl decode not mapstructure, mount_options * client/allocrunner/csi_hook: pass MountOptions through client/allocrunner/csi_hook: add a VolumeMountOptions client/allocrunner/csi_hook: drop Options client/allocrunner/csi_hook: use the structs options * client/pluginmanager/csimanager/interface: UsageOptions.MountOptions * client/pluginmanager/csimanager/volume: pass MountOptions in capabilities * plugins/csi/plugin: remove todo 7007 comment * nomad/structs/csi: MountOptions * api/csi: add options to the api for parsing, match structs * plugins/csi/plugin: move VolumeMountOptions to structs * api/csi: use specific type for mount_options * client/allocrunner/csi_hook: merge MountOptions here * rename CSIOptions to CSIMountOptions * client/allocrunner/csi_hook * client/pluginmanager/csimanager/volume * nomad/structs/csi * plugins/csi/fake/client: add PrevVolumeCapability * plugins/csi/plugin * client/pluginmanager/csimanager/volume_test: remove debugging * client/pluginmanager/csimanager/volume: fix odd merging logic * api: rename CSIOptions -> CSIMountOptions * nomad/csi_endpoint: remove a 7007 comment * command/alloc_status: show mount options in the volume list * nomad/structs/csi: include MountOptions in the volume stub * api/csi: add MountOptions to stub * command/volume_status_csi: clean up csiVolMountOption, add it * command/alloc_status: csiVolMountOption lives in volume_csi_status * command/node_status: display mount flags * nomad/structs/volumes: npe * plugins/csi/plugin: npe in ToCSIRepresentation * jobspec/parse_test: expand volume parse test cases * command/agent/job_endpoint: ApiTgToStructsTG needs MountOptions * command/volume_status_csi: copy paste error * jobspec/test-fixtures/basic: hclfmt * command/volume_status_csi: clean up csiVolMountOption
2020-03-23 17:55:26 +00:00
mount_options {
fs_type = "ext4"
}
}
volume "baz" {
type = "csi"
source = "bar-vol"
mount_options {
mount_flags = ["ro"]
}
}
restart {
attempts = 5
interval = "10m"
delay = "15s"
mode = "delay"
2015-09-15 00:43:42 +00:00
}
reschedule {
2019-07-20 14:55:07 +00:00
attempts = 5
interval = "12h"
}
ephemeral_disk {
2019-07-20 14:55:07 +00:00
sticky = true
size = 150
}
update {
2019-07-20 14:55:07 +00:00
max_parallel = 3
health_check = "checks"
min_healthy_time = "1s"
healthy_deadline = "1m"
progress_deadline = "1m"
auto_revert = false
auto_promote = false
canary = 2
}
migrate {
2019-07-20 14:55:07 +00:00
max_parallel = 2
health_check = "task_states"
min_healthy_time = "11s"
healthy_deadline = "11m"
}
2018-07-16 13:30:58 +00:00
affinity {
attribute = "${node.datacenter}"
2019-07-20 14:55:07 +00:00
value = "dc2"
operator = "="
weight = 100
2018-07-16 13:30:58 +00:00
}
2019-07-20 14:55:07 +00:00
2018-07-18 17:28:26 +00:00
spread {
attribute = "${node.datacenter}"
2019-07-20 14:55:07 +00:00
weight = 50
2018-07-18 17:28:26 +00:00
target "dc1" {
percent = 50
}
2019-07-20 14:55:07 +00:00
2018-07-18 17:28:26 +00:00
target "dc2" {
percent = 25
}
2019-07-20 14:55:07 +00:00
2018-07-18 17:28:26 +00:00
target "dc3" {
percent = 25
}
}
stop_after_client_disconnect = "120s"
task "binstore" {
driver = "docker"
user = "bob"
2017-02-11 00:57:47 +00:00
leader = true
2019-10-11 12:00:05 +00:00
kind = "connect-proxy:test"
affinity {
attribute = "${meta.foo}"
2019-07-20 14:55:07 +00:00
value = "a,b,c"
operator = "set_contains"
weight = 25
}
config {
image = "hashicorp/binstore"
labels {
FOO = "bar"
}
}
volume_mount {
volume = "foo"
destination = "/mnt/foo"
}
2020-03-07 02:52:58 +00:00
restart {
attempts = 10
}
logs {
max_files = 14
max_file_size = 101
}
env {
HELLO = "world"
LOREM = "ipsum"
}
service {
2019-11-13 03:27:54 +00:00
meta {
abc = "123"
}
2019-11-13 03:27:54 +00:00
canary_meta {
canary = "boom"
}
2019-07-20 14:55:07 +00:00
tags = ["foo", "bar"]
2018-04-19 22:12:23 +00:00
canary_tags = ["canary", "bam"]
2019-07-20 14:55:07 +00:00
port = "http"
check {
name = "check-name"
type = "tcp"
interval = "10s"
timeout = "2s"
port = "admin"
grpc_service = "foo.Bar"
grpc_use_tls = true
2017-09-14 22:55:37 +00:00
check_restart {
2019-07-20 14:55:07 +00:00
limit = 3
grace = "10s"
2017-09-14 22:55:37 +00:00
ignore_warnings = true
}
2015-09-15 00:43:42 +00:00
}
}
resources {
cpu = 500
memory = 128
memory_max = 256
network {
mbits = "100"
port "one" {
static = 1
}
2015-09-15 00:43:42 +00:00
port "two" {
static = 2
}
port "three" {
static = 3
}
2019-07-20 14:55:07 +00:00
port "http" {}
2019-07-20 14:55:07 +00:00
port "https" {}
2019-07-20 14:55:07 +00:00
port "admin" {}
2015-09-15 00:43:42 +00:00
}
2018-10-08 23:09:41 +00:00
device "nvidia/gpu" {
2019-07-20 14:55:07 +00:00
count = 10
constraint {
attribute = "${device.attr.memory}"
value = "2GB"
operator = ">"
}
affinity {
attribute = "${device.model}"
value = "1080ti"
weight = 50
}
2018-10-08 23:09:41 +00:00
}
2019-07-20 14:55:07 +00:00
2018-10-08 23:09:41 +00:00
device "intel/gpu" {}
}
kill_timeout = "22s"
2015-09-15 00:43:42 +00:00
shutdown_delay = "11s"
artifact {
source = "http://foo.com/artifact"
options {
checksum = "md5:b8a4f3f72ecab0510a6a31e997461c5f"
2015-09-15 00:43:42 +00:00
}
}
artifact {
2019-07-20 14:55:07 +00:00
source = "http://bar.com/artifact"
destination = "test/foo/"
2019-07-20 14:55:07 +00:00
mode = "file"
2015-09-15 00:43:42 +00:00
options {
checksum = "md5:ff1cc0d3432dad54d607c1505fb7245c"
2015-09-15 00:43:42 +00:00
}
}
2016-08-09 23:07:45 +00:00
vault {
namespace = "ns1"
policies = ["foo", "bar"]
2016-08-09 23:07:45 +00:00
}
2016-09-26 22:23:26 +00:00
template {
2019-07-20 14:55:07 +00:00
source = "foo"
destination = "foo"
change_mode = "foo"
2016-10-03 19:42:18 +00:00
change_signal = "foo"
2019-07-20 14:55:07 +00:00
splay = "10s"
env = true
vault_grace = "33s"
2016-09-26 22:23:26 +00:00
}
template {
2019-07-20 14:55:07 +00:00
source = "bar"
destination = "bar"
perms = "777"
left_delimiter = "--"
2017-02-21 00:43:28 +00:00
right_delimiter = "__"
2016-09-26 22:23:26 +00:00
}
}
task "storagelocker" {
driver = "docker"
2019-10-11 17:10:45 +00:00
lifecycle {
hook = "prestart"
sidecar = true
2019-10-11 17:10:45 +00:00
}
config {
image = "hashicorp/storagelocker"
}
resources {
cpu = 500
memory = 128
}
constraint {
attribute = "kernel.arch"
value = "amd64"
}
2016-10-11 22:25:49 +00:00
vault {
2019-07-20 14:55:07 +00:00
policies = ["foo", "bar"]
env = false
change_mode = "signal"
2016-10-11 22:25:49 +00:00
change_signal = "SIGUSR1"
}
}
constraint {
attribute = "kernel.os"
value = "linux"
}
meta {
elb_mode = "tcp"
elb_interval = 10
elb_checks = 3
2015-09-15 00:43:42 +00:00
}
}
2015-09-15 00:43:42 +00:00
}