diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-08-01 07:01:54 +0000 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-08-01 07:28:33 +0000 |
commit | 7fb7ed7a8422b3f01d1d9cc5df04852262e8ee8f (patch) | |
tree | 8131924cca6dee4882a4cb8c1120e21961aa00c6 | |
parent | 4767b2f71c97909ceaa1b553c83ba6488b373569 (diff) |
Fix CA file bind mounting in containers
The syntax was wrong and wasn't actually bind mounting the CA file.
This fixes it.
Change-Id: Icfa2118ccd2a32fdc3d1af27e3e3ee02bdfbb13b
-rw-r--r-- | docker/services/containers-common.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/services/containers-common.yaml b/docker/services/containers-common.yaml index 71ea8d1f..2c894da5 100644 --- a/docker/services/containers-common.yaml +++ b/docker/services/containers-common.yaml @@ -66,5 +66,9 @@ outputs: - /etc/ssh/ssh_known_hosts:/etc/ssh/ssh_known_hosts:ro - if: - internal_tls_enabled - - - {get_param: InternalTLSCAFile} + - - list_join: + - ':' + - - {get_param: InternalTLSCAFile} + - {get_param: InternalTLSCAFile} + - 'ro' - null |