forked from Deuxfleurs/nixcfg
Clone core module in staging and prod, move bad stuff to experimental
This commit is contained in:
parent
981294e3d7
commit
41128f4c36
17 changed files with 75 additions and 0 deletions
1
cluster/prod/app/secretmgr.py
Symbolic link
1
cluster/prod/app/secretmgr.py
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../secretmgr/secretmgr.py
|
1
cluster/prod/app/shell.nix
Symbolic link
1
cluster/prod/app/shell.nix
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../secretmgr/shell.nix
|
71
cluster/staging/app/core/deploy/core.hcl
Normal file
71
cluster/staging/app/core/deploy/core.hcl
Normal file
|
@ -0,0 +1,71 @@
|
|||
job "core" {
|
||||
datacenters = ["dc1", "neptune"]
|
||||
type = "system"
|
||||
priority = 90
|
||||
|
||||
constraint {
|
||||
attribute = "${attr.cpu.arch}"
|
||||
value = "amd64"
|
||||
}
|
||||
|
||||
update {
|
||||
max_parallel = 1
|
||||
stagger = "1m"
|
||||
}
|
||||
|
||||
group "network" {
|
||||
task "diplonat" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "lxpz/amd64_diplonat:3"
|
||||
network_mode = "host"
|
||||
readonly_rootfs = true
|
||||
volumes = [
|
||||
"secrets:/etc/diplonat",
|
||||
]
|
||||
}
|
||||
|
||||
restart {
|
||||
interval = "30m"
|
||||
attempts = 2
|
||||
delay = "15s"
|
||||
mode = "delay"
|
||||
}
|
||||
|
||||
template {
|
||||
data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
|
||||
destination = "secrets/consul-ca.crt"
|
||||
}
|
||||
|
||||
template {
|
||||
data = "{{ key \"secrets/consul/consul-client.crt\" }}"
|
||||
destination = "secrets/consul-client.crt"
|
||||
}
|
||||
|
||||
template {
|
||||
data = "{{ key \"secrets/consul/consul-client.key\" }}"
|
||||
destination = "secrets/consul-client.key"
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOH
|
||||
DIPLONAT_REFRESH_TIME=60
|
||||
DIPLONAT_EXPIRATION_TIME=300
|
||||
DIPLONAT_CONSUL_NODE_NAME={{ env "attr.unique.hostname" }}
|
||||
DIPLONAT_CONSUL_URL=https://localhost:8501
|
||||
DIPLONAT_CONSUL_CA_CERT=/etc/diplonat/consul-ca.crt
|
||||
DIPLONAT_CONSUL_CLIENT_CERT=/etc/diplonat/consul-client.crt
|
||||
DIPLONAT_CONSUL_CLIENT_KEY=/etc/diplonat/consul-client.key
|
||||
RUST_LOG=debug
|
||||
EOH
|
||||
destination = "secrets/env"
|
||||
env = true
|
||||
}
|
||||
|
||||
resources {
|
||||
memory = 40
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
cluster/staging/app/secretmgr.py
Symbolic link
1
cluster/staging/app/secretmgr.py
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../secretmgr/secretmgr.py
|
1
cluster/staging/app/shell.nix
Symbolic link
1
cluster/staging/app/shell.nix
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../secretmgr/shell.nix
|
Loading…
Reference in a new issue