Update to 2022-11-16 14:00

This commit is contained in:
Daniel Berteaud
2022-11-16 14:00:10 +01:00
parent 79f98fb166
commit 257f5c13f0
5 changed files with 23 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
{
"auths": {
{% for auth in nomad_conf.client.task_drivers.docker.auths %}
{% if auth.registry is defined and auth.login is defined and auth.password is defined %}
"{{ auth.registry }}": {
"auth": "{{ (auth.login ~ ':' ~ auth.password) | b64encode }}"
}{% if not loop.last %},{% endif %}
{% endif %}
{% endfor %}
}
}