Files
nomad/demo/csi/hostpath/redis.nomad
hashicorp-copywrite[bot] 4f55df8306 Adding explicit MPL license for sub-package (#18219)
This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository.

Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-16 09:59:07 -05:00

46 lines
790 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "example" {
datacenters = ["dc1"]
group "cache" {
count = 2
volume "volume0" {
type = "csi"
source = "test-volume"
attachment_mode = "file-system"
access_mode = "single-node-reader-only" # alt: "single-node-writer"
read_only = true
per_alloc = true
}
network {
port "db" {
to = 6379
}
}
task "redis" {
driver = "docker"
config {
image = "redis:7"
ports = ["db"]
}
volume_mount {
volume = "volume0"
destination = "${NOMAD_ALLOC_DIR}/volume0"
}
resources {
cpu = 500
memory = 256
}
}
}
}