You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
329 B

  1. {% if crio_registry_auth is defined and crio_registry_auth|length %}
  2. {
  3. {% for reg in crio_registry_auth %}
  4. "auths": {
  5. "{{ reg.registry }}": {
  6. "auth": "{{ (reg.username + ':' + reg.password) | string | b64encode }}"
  7. }
  8. {% if not loop.last %}
  9. },
  10. {% else %}
  11. }
  12. {% endif %}
  13. {% endfor %}
  14. }
  15. {% else %}
  16. {}
  17. {% endif %}