# Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: BUSL-1.1 job "bridge" { constraint { attribute = "${attr.kernel.name}" value = "linux" } group "group" { network { mode = "bridge" port "http" { to = 8181 } } service { provider = "nomad" name = "pybridge" port = "http" tags = ["public=${attr.unique.platform.aws.public-ipv4}"] check { name = "up" type = "http" path = "/index.html" interval = "6s" timeout = "1s" } } task "python" { driver = "pledge" config { command = "python3" args = ["-m", "http.server", "8181", "--directory", "${NOMAD_TASK_DIR}"] promises = "stdio rpath inet" unveil = ["r:/etc/mime.types", "r:${NOMAD_TASK_DIR}"] } template { destination = "local/index.html" data = < bridge mode

Hello, pal!

EOH } } restart { attempts = 0 mode = "fail" } update { min_healthy_time = "4s" } } }