openscanhub: try to fix key format
Private key is missing newline character at the end which is causing failures with ssh. This is an attempt to fix that. Signed-off-by: Siteshwar Vashisht <svashisht@redhat.com>
This commit is contained in:
parent
80f63933b5
commit
b5b5535c7e
1 changed files with 2 additions and 2 deletions
|
@ -4,5 +4,5 @@ kind: Secret
|
|||
metadata:
|
||||
name: aws-openscanhub-key
|
||||
data:
|
||||
id_rsa: {{ lookup('file', private+'/files/openscanhub/openscanhub.key') | b64encode }}
|
||||
id_rsa.pub: {{ lookup('file', private+'/files/openscanhub/openscanhub.key.pub') | b64encode }}
|
||||
id_rsa: "{{ lookup('file', private+'/files/openscanhub/openscanhub.key') | b64encode }}"
|
||||
id_rsa.pub: "{{ lookup('file', private+'/files/openscanhub/openscanhub.key.pub') | b64encode }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue