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
This commit is contained in:
Juan Antonio Osorio Robles 2017-08-01 07:01:54 +00:00
parent 4767b2f71c
commit 7fb7ed7a84
1 changed files with 5 additions and 1 deletions

View File

@ -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