From caf45b5270efbab8178b4b79513957a3ed5ad6fe Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Mon, 4 Jul 2022 14:55:07 +0200 Subject: [PATCH] Fix quotes --- .../firstboot/files/ansible_payload/templates/registries.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/firstboot/files/ansible_payload/templates/registries.j2 b/ansible/roles/firstboot/files/ansible_payload/templates/registries.j2 index 7ab5528..3d3301b 100644 --- a/ansible/roles/firstboot/files/ansible_payload/templates/registries.j2 +++ b/ansible/roles/firstboot/files/ansible_payload/templates/registries.j2 @@ -1,16 +1,16 @@ mirrors: docker.io: endpoint: - - "https://registry.{{ vapp['metacluster.fqdn'] }} + - https://registry.{{ vapp['metacluster.fqdn'] }} rewrite: "(.*)": "library/docker.io/$1" ghcr.io: endpoint: - - "https://registry.{{ vapp['metacluster.fqdn'] }} + - https://registry.{{ vapp['metacluster.fqdn'] }} rewrite: "(.*)": "library/ghcr.io/$1" quay.io: endpoint: - - "https://registry.{{ vapp['metacluster.fqdn'] }} + - https://registry.{{ vapp['metacluster.fqdn'] }} rewrite: "(.*)": "library/quay.io/$1"