mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-22 16:04:25 +01:00
b6b9e09535
Signed-off-by: main <magic_rb@redalder.org>
105 lines
2.3 KiB
HCL
105 lines
2.3 KiB
HCL
resource "nomad_volume" "matrix-synapse" {
|
|
type = "csi"
|
|
plugin_id = "org.democratic-csi.nfs"
|
|
volume_id = "matrix-synapse"
|
|
name = "matrix-synapse"
|
|
external_id = "matrix-synapse"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/matrix/synapse"
|
|
node_attach_driver = "nfs"
|
|
provisioner_driver = "node-manual"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nfsvers=3", "hard", "async" ]
|
|
}
|
|
}
|
|
|
|
resource "nomad_volume" "matrix-registrations" {
|
|
type = "csi"
|
|
plugin_id = "org.democratic-csi.nfs"
|
|
volume_id = "matrix-registrations"
|
|
name = "matrix-registrations"
|
|
external_id = "matrix-registrations"
|
|
|
|
capability {
|
|
access_mode = "multi-node-multi-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/matrix/registrations"
|
|
node_attach_driver = "nfs"
|
|
provisioner_driver = "node-manual"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nfsvers=3", "hard", "async" ]
|
|
}
|
|
}
|
|
|
|
resource "nomad_volume" "matrix-mautrix-facebook" {
|
|
type = "csi"
|
|
plugin_id = "org.democratic-csi.nfs"
|
|
volume_id = "matrix-mautrix-facebook"
|
|
name = "matrix-mautrix-facebook"
|
|
external_id = "matrix-mautrix-facebook"
|
|
|
|
capability {
|
|
access_mode = "single-node-writer"
|
|
attachment_mode = "file-system"
|
|
}
|
|
|
|
context = {
|
|
server = "blowhole.hosts.in.redalder.org"
|
|
share = "/var/nfs/matrix/mautrix-facebook"
|
|
node_attach_driver = "nfs"
|
|
provisioner_driver = "node-manual"
|
|
}
|
|
|
|
mount_options {
|
|
fs_type = "nfs"
|
|
mount_flags = [ "nfsvers=3", "hard", "async" ]
|
|
}
|
|
}
|
|
|
|
resource "vault_policy" "matrix-mautrix-facebook-policy" {
|
|
name = "matrix-mautrix-facebook-policy"
|
|
policy = <<EOF
|
|
path "kv/data/matrix/mautrix-facebook" {
|
|
capabilities = ["read"]
|
|
}
|
|
EOF
|
|
}
|
|
|
|
resource "vault_policy" "matrix-synapse-policy" {
|
|
name = "matrix-synapse-policy"
|
|
policy = <<EOF
|
|
path "kv/data/matrix/synapse" {
|
|
capabilities = ["read"]
|
|
}
|
|
EOF
|
|
}
|
|
|
|
resource "nomad_job" "conduit" {
|
|
jobspec = file("${path.module}/job/conduit.hcl")
|
|
|
|
hcl2 {
|
|
enabled = true
|
|
vars = {
|
|
flake_ref = "${var.flake_host}?ref=${var.flake_ref}&rev=${var.flake_rev}"
|
|
flake_sha = var.flake_sha
|
|
}
|
|
}
|
|
}
|