64 lines
1.3 KiB
HCL
64 lines
1.3 KiB
HCL
provider "nomad" {
|
|
# For some reason nomad is binding to the tailscale IP but not the (local) IP that we get for the same hostname
|
|
address = "http://jaglan-beta-m01:4646"
|
|
}
|
|
|
|
resource "nomad_job" "glance" {
|
|
jobspec = file("glance.nomad.hcl")
|
|
}
|
|
|
|
resource "nomad_job" "hello_world" {
|
|
jobspec = file("hello-world.nomad.hcl")
|
|
}
|
|
|
|
resource "nomad_job" "traefik" {
|
|
jobspec = file("traefik.nomad.hcl")
|
|
}
|
|
|
|
resource "nomad_job" "webapp" {
|
|
jobspec = file("webapp.nomad.hcl")
|
|
}
|
|
|
|
resource "nomad_job" "csi-smb" {
|
|
jobspec = file("csi-smb.nomad.hcl")
|
|
}
|
|
|
|
data "nomad_plugin" "smb" {
|
|
plugin_id = "smb"
|
|
wait_for_healthy = true
|
|
}
|
|
|
|
resource "nomad_volume" "unraid_transfer" {
|
|
depends_on = [data.nomad_plugin.smb]
|
|
plugin_id = "smb"
|
|
type = "csi"
|
|
volume_id = "unraid_transfer_id5"
|
|
name = "unraid_transfer_name"
|
|
|
|
external_id = "unraid_transfer_ext"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
source = "//192.168.1.192/transfer"
|
|
}
|
|
|
|
parameters = {
|
|
source = "//192.168.1.192/transfer"
|
|
"csi.storage.k8s.io/node-stage-secret-name" = "smbcreds"
|
|
"csi.storage.k8s.io/node-stage-secret-namespace" = "default"
|
|
}
|
|
|
|
secrets = {
|
|
"username" = "anon"
|
|
"password" = ""
|
|
}
|
|
}
|
|
|
|
resource "nomad_job" "volume_test" {
|
|
jobspec = file("volume-test.nomad.hcl")
|
|
}
|