Add missing quotes to Docker registry TLS example

Change-Id: I5bdad8a2f379c11e6b55df8fd2481f5ae01ed6b9
This commit is contained in:
Pierre Riteau 2021-09-16 18:27:43 +02:00
parent 480ba15e7e
commit 1c173aeb3d

View File

@ -63,8 +63,8 @@ may be encrypted via Ansible Vault.
:caption: ``docker-registry.yml``
docker_registry_enable_tls: true
docker_registry_cert_path: "{{ kayobe_config_path }}/docker-registry/cert.pem
docker_registry_key_path: "{{ kayobe_config_path }}/docker-registry/key.pem
docker_registry_cert_path: "{{ kayobe_config_path }}/docker-registry/cert.pem"
docker_registry_key_path: "{{ kayobe_config_path }}/docker-registry/key.pem"
Basic authentication
--------------------