mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
* Hacky but shows links and desc * markdown * Small pre-test cleanup * Test for UI description and link rendering * JSON jobspec docs and variable example job get UI block * Jobspec documentation for UI block * Description and links moved into the Title component and made into Helios components * Marked version upgrade * Allow links without a description and max description to 1000 chars * Node 18 for setup-js * markdown sanitization * Ui to UI and docs change * Canonicalize, copy and diff for job.ui * UI block added to testJob for structs testing * diff test * Remove redundant reset * For readability, changing the receiving pointer of copied job variables * TestUI endpiont conversion tests * -require +must * Nil check on Links * JobUIConfig.Links as pointer --------- Co-authored-by: Tim Gross <tgross@hashicorp.com>
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
export default `# Use Nomad Variables to modify this job's output:
|
|
# run "nomad var put nomad/jobs/variables-example name=YOUR_NAME" to get started
|
|
|
|
job "variables-example" {
|
|
# Specifies the datacenter where this job should be run
|
|
# This can be omitted and it will default to ["*"]
|
|
datacenters = ["*"]
|
|
|
|
ui {
|
|
description = "A job that uses **Nomad Variables** to modify its output"
|
|
link {
|
|
label = "Learn more about Nomad Variables"
|
|
url = "https://developer.hashicorp.com/nomad/docs/concepts/variables"
|
|
}
|
|
link {
|
|
label = "See this job on Github"
|
|
url = "https://github.com/hashicorp/nomad/blob/main/ui/app/utils/default_jobs/variables.js"
|
|
}
|
|
}
|
|
|
|
group "web" {
|
|
|
|
network {
|
|
# Task group will have an isolated network namespace with
|
|
# an interface that is bridged with the host
|
|
port "www" {
|
|
to = 8001
|
|
}
|
|
}
|
|
|
|
service {
|
|
provider = "nomad"
|
|
port = "www"
|
|
}
|
|
|
|
task "http" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "busybox:1"
|
|
command = "httpd"
|
|
args = ["-v", "-f", "-p", "8001", "-h", "/local"]
|
|
ports = ["www"]
|
|
}
|
|
|
|
# Create a template resource that will be used to render the html file
|
|
# using the Nomad variable at "nomad/jobs/variables-example"
|
|
template {
|
|
data = "<html>hello, {{ with nomadVar \\" nomad/jobs/variables-example \\" }}{{ .name }}{{ end }}</html>"
|
|
destination = "local/index.html"
|
|
}
|
|
|
|
resources {
|
|
cpu = 128
|
|
memory = 128
|
|
}
|
|
|
|
}
|
|
}
|
|
}`;
|