aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-03-28 11:55:58 +0100
committerAlex Auvolat <alex@adnab.me>2024-03-28 11:56:51 +0100
commit5b89004c0f7884e4c8bbb59d2743c92baef8c723 (patch)
tree7c5fc20eb7323dcd48041fab9050f44ff0e3e071
parente4708a325d4b2835b31c5616393525b84eddec5f (diff)
downloadnixcfg-5b89004c0f7884e4c8bbb59d2743c92baef8c723.tar.gz
nixcfg-5b89004c0f7884e4c8bbb59d2743c92baef8c723.zip
staging: deploy garage 0.10 beta + fix monitoring
-rw-r--r--cluster/staging/app/garage/deploy/garage.hcl4
-rw-r--r--cluster/staging/app/telemetry/deploy/telemetry-service.hcl2
-rwxr-xr-xdeploy_pki7
3 files changed, 5 insertions, 8 deletions
diff --git a/cluster/staging/app/garage/deploy/garage.hcl b/cluster/staging/app/garage/deploy/garage.hcl
index d87167c..61ddce3 100644
--- a/cluster/staging/app/garage/deploy/garage.hcl
+++ b/cluster/staging/app/garage/deploy/garage.hcl
@@ -26,8 +26,8 @@ job "garage-staging" {
packages = [
"#bash", # so that we can enter a shell inside container
"#coreutils",
- # garage v0.9.2-rc1 as of 2024-02-29
- "git+https://git.deuxfleurs.fr/Deuxfleurs/garage.git?ref=main&rev=b8c7a560ef339142607106649f8cef88def82fb8"
+ # garage v0.10 beta as of 2024-03-27
+ "git+https://git.deuxfleurs.fr/Deuxfleurs/garage.git?ref=next-0.10&rev=25c196f34d958f4f61d50c89a1c5d40b96d7cd24"
]
command = "garage"
args = [ "server" ]
diff --git a/cluster/staging/app/telemetry/deploy/telemetry-service.hcl b/cluster/staging/app/telemetry/deploy/telemetry-service.hcl
index c1d2cf3..ec68aaf 100644
--- a/cluster/staging/app/telemetry/deploy/telemetry-service.hcl
+++ b/cluster/staging/app/telemetry/deploy/telemetry-service.hcl
@@ -39,7 +39,7 @@ job "telemetry-service" {
}
template {
- data = "{{ key \"secrets/consul/consul.crt\" }}"
+ data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
destination = "etc/prom/consul.crt"
}
diff --git a/deploy_pki b/deploy_pki
index f9a4106..1ab2b35 100755
--- a/deploy_pki
+++ b/deploy_pki
@@ -19,10 +19,7 @@ cmd ln -sf /var/lib/consul/pki/consul$YEAR.key /var/lib/consul/pki/consul.key
cmd ln -sf /var/lib/consul/pki/consul$YEAR-client.crt /var/lib/consul/pki/consul-client.crt
cmd ln -sf /var/lib/consul/pki/consul$YEAR-client.key /var/lib/consul/pki/consul-client.key
-
cmd systemctl reload consul
-cmd sleep 10
-
for file in nomad-ca.crt nomad$YEAR.crt nomad$YEAR.key \
nomad$YEAR-client.crt nomad$YEAR-client.key \
@@ -30,8 +27,8 @@ for file in nomad-ca.crt nomad$YEAR.crt nomad$YEAR.key \
do
if pass $PKI/$file >/dev/null; then
write_pass $PKI/$file /var/lib/nomad/pki/$file
- if [ "$CLUSTER" = "prod" ]; then
- cmd "chown \$(stat -c %u /var/lib/private/nomad/) /var/lib/nomad/pki/$file"
+ if [ ! "$CLUSTER" = "staging" ]; then
+ cmd "chown \$(stat -c %u /var/lib/private/nomad/) /var/lib/nomad/pki/$file"
fi
fi
done