From 5649191b4ff9c7069222e260635e39628fe7ea6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 3 Sep 2024 09:29:39 +0200 Subject: [PATCH] all: add Harbor Docker registry credentials MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise hosts create a lot of `/v2/` calls that fail with 401. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/all.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 658c9cf..325600b 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -14,3 +14,9 @@ wireguard_consul_acl_token: '{{lookup("bitwarden", "consul/acl-tokens", field="w # Volume of Trace level logs is too high and fills up ES cluster. bootstrap__rsyslog_filter_rules: ['TRC'] + +# Docker registry +bootstrap__docker_registries: + - url: 'https://harbor.status.im' + username: 'robot$wakuorg+infra-status' + password: '{{ lookup("bitwarden", "harbor-robot", field="robot$wakuorg+infra-status") }}'