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

210 lines
3.4 KiB
HCL
Raw Normal View History

2015-09-15 00:43:42 +00:00
job "binstore-storagelocker" {
region = "fooregion"
type = "batch"
priority = 52
all_at_once = true
datacenters = ["us2", "eu1"]
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"
}
update {
stagger = "60s"
max_parallel = 2
health_check = "manual"
min_healthy_time = "10s"
healthy_deadline = "10m"
auto_revert = 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
restart {
attempts = 5
interval = "10m"
delay = "15s"
mode = "delay"
2015-09-15 00:43:42 +00:00
}
ephemeral_disk {
sticky = true
size = 150
}
update {
max_parallel = 3
health_check = "checks"
min_healthy_time = "1s"
healthy_deadline = "1m"
auto_revert = false
canary = 2
}
task "binstore" {
driver = "docker"
user = "bob"
2017-02-11 00:57:47 +00:00
leader = true
config {
image = "hashicorp/binstore"
labels {
FOO = "bar"
}
}
logs {
max_files = 14
max_file_size = 101
}
env {
HELLO = "world"
LOREM = "ipsum"
}
service {
tags = ["foo", "bar"]
port = "http"
check {
name = "check-name"
type = "tcp"
interval = "10s"
timeout = "2s"
port = "admin"
2015-09-15 00:43:42 +00:00
}
}
resources {
cpu = 500
memory = 128
network {
mbits = "100"
port "one" {
static = 1
}
2015-09-15 00:43:42 +00:00
port "two" {
static = 2
}
port "three" {
static = 3
}
port "http" {
}
port "https" {
}
port "admin" {
}
2015-09-15 00:43:42 +00:00
}
}
kill_timeout = "22s"
2015-09-15 00:43:42 +00:00
artifact {
source = "http://foo.com/artifact"
options {
checksum = "md5:b8a4f3f72ecab0510a6a31e997461c5f"
2015-09-15 00:43:42 +00:00
}
}
artifact {
source = "http://bar.com/artifact"
destination = "test/foo/"
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 {
policies = ["foo", "bar"]
}
2016-09-26 22:23:26 +00:00
template {
source = "foo"
destination = "foo"
change_mode = "foo"
2016-10-03 19:42:18 +00:00
change_signal = "foo"
2016-09-26 22:23:26 +00:00
splay = "10s"
2017-05-26 22:31:40 +00:00
env = true
2016-09-26 22:23:26 +00:00
}
template {
source = "bar"
destination = "bar"
perms = "777"
2017-02-21 00:43:28 +00:00
left_delimiter = "--"
right_delimiter = "__"
2016-09-26 22:23:26 +00:00
}
}
task "storagelocker" {
driver = "docker"
config {
image = "hashicorp/storagelocker"
}
resources {
cpu = 500
memory = 128
iops = 30
}
constraint {
attribute = "kernel.arch"
value = "amd64"
}
2016-10-11 22:25:49 +00:00
vault {
policies = ["foo", "bar"]
env = false
change_mode = "signal"
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
}