Removing old nomad configs
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 3s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 13s

This commit is contained in:
shockrah 2025-07-14 20:43:40 -07:00
parent e183055282
commit 2ef4b00097
3 changed files with 0 additions and 110 deletions

View File

@ -1,34 +0,0 @@
# Nigel's NFS that we use for rando stuff
job "nfs" {
type = "service"
group "nfs" {
count = 1
network {
port "v4" {
static = 2049
}
}
service {
name = "nfs"
port = "v4"
provider = "nomad"
}
volume "nfs_files" {
type = "host"
read_only = false
source = "nfs"
}
task "nfs" {
driver = "docker"
config {
image = "erichough/nfs-server"
ports = [ "v4" ]
args = ["--cap-add", "SYS_ADMIN"]
}
}
}
}

View File

@ -1,46 +0,0 @@
# Nigel's Container Registry
job "ncr" {
type = "service"
group "ncr" {
count = 1
network {
port "docker" {
static = 5000
}
}
service {
name = "ncr"
port = "docker"
provider = "nomad"
}
volume "container_images" {
type = "host"
read_only = false
source = "registry"
}
restart {
attempts = 10
interval = "5m"
delay = "30s"
mode = "delay"
}
task "ncr" {
driver = "docker"
volume_mount {
volume = "container_images"
destination = "/registry/data"
read_only = false
}
config {
image = "registry:latest"
ports = [ "docker" ]
}
}
}
}

View File

@ -1,30 +0,0 @@
# This 'service' job is just a simple nginx container that lives here as a kind of sanity check
# PORT: 8080
# DNS : sanity.nigel.local
job "health" {
type = "service"
group "health" {
count = 1
network {
port "http" {
static = 8080
}
}
service {
name = "health-svc"
port = "http"
provider = "nomad"
}
task "health-setup" {
driver = "docker"
config {
image = "shockrah/sanity:latest"
ports = [ "http" ]
}
}
}
}