From fc8f77c6844645b8f81b09ab4c452dedddec6c9b Mon Sep 17 00:00:00 2001 From: Artemus <31190188+Mr-Artemus@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:35:47 +0200 Subject: [PATCH] fix: Incorrect indentation on config --- templates/registries.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/registries.yaml.j2 b/templates/registries.yaml.j2 index 4455669..2d596b3 100644 --- a/templates/registries.yaml.j2 +++ b/templates/registries.yaml.j2 @@ -16,6 +16,6 @@ mirrors: configs: {% for config in rke2_custom_registry_configs %} {{ config.endpoint }}: - {{ config.config | to_nice_yaml(indent=6) }} + {{ config.config | to_nice_yaml(indent=2) | indent(4) }} {%- endfor %} {% endif %}