From 412c866ac17f07b53a4f0bf03fc633ed381bc60e Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Wed, 7 May 2025 15:51:30 +0200 Subject: [PATCH] fix --- infra/jobs/station/device-server.levant.nomad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/jobs/station/device-server.levant.nomad b/infra/jobs/station/device-server.levant.nomad index 64ec81d08..d527d18ac 100644 --- a/infra/jobs/station/device-server.levant.nomad +++ b/infra/jobs/station/device-server.levant.nomad @@ -63,7 +63,7 @@ job "device-servers" { image = "[[ $.registry.astron.url ]]/mc:latest" entrypoint = [""] command = "/bin/bash" - args = ["-c", "mc alias set object-storage https://s3.service.consul:9000 [[.object_storage.user.name]] [[.object_storage.user.pass]] && mc mirror --preserve --watch object-storage/caltables/[[ .station | toUpper ]]/ /opt/caltables/ --monitoring-address 0.0.0.0:8082" ] + args = ["-c", "mc alias set object-storage http://s3.service.consul:9000 [[.object_storage.user.name]] [[.object_storage.user.pass]] && mc mirror --preserve --watch object-storage/caltables/[[ .station | toUpper ]]/ /opt/caltables/ --monitoring-address 0.0.0.0:8082" ] } resources { @@ -85,7 +85,7 @@ job "device-servers" { image = "[[ $.registry.astron.url ]]/mc:latest" entrypoint = [""] command = "/bin/bash" - args = ["-c", "mc alias set object-storage https://s3.service.consul:9000 [[.object_storage.user.name]] [[.object_storage.user.pass]] && mc mirror --preserve --watch object-storage/iers/ /opt/IERS/ --monitoring-address 0.0.0.0:8081" ] + args = ["-c", "mc alias set object-storage http://s3.service.consul:9000 [[.object_storage.user.name]] [[.object_storage.user.pass]] && mc mirror --preserve --watch object-storage/iers/ /opt/IERS/ --monitoring-address 0.0.0.0:8081" ] } resources { -- GitLab