From c138b700030d22ae0bdbd6992fb4a4d8a3431798 Mon Sep 17 00:00:00 2001 From: Piotr Jaszczyk Date: Wed, 10 Apr 2019 10:32:00 +0200 Subject: Read passwords from files Key- and trust-store passwords should be read from files in order to work with DCAE tls-init-container. Change-Id: Ibe454663328268f33f8be25ef9ec129f1ce1d396 Issue-ID: DCAEGEN2-1412 Signed-off-by: Piotr Jaszczyk --- dpo/spec/hv-ves-collector.componentspec.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'dpo/spec') diff --git a/dpo/spec/hv-ves-collector.componentspec.json b/dpo/spec/hv-ves-collector.componentspec.json index 13dd64a3..d88fd285 100644 --- a/dpo/spec/hv-ves-collector.componentspec.json +++ b/dpo/spec/hv-ves-collector.componentspec.json @@ -71,32 +71,32 @@ }, { "name": "security.keys.keyStoreFile", - "value": "/etc/ves-hv/ssl/keystore.p12", + "value": "/etc/ves-hv/ssl/cert.jks", "description": "Points to private key store file", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { - "name": "security.keys.keyStorePassword", - "value": "onaponap", - "description": "Password for the key store", + "name": "security.keys.keyStorePasswordFile", + "value": "/etc/ves-hv/ssl/jks.pass", + "description": "File which contains password for the key store", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { "name": "security.keys.trustStoreFile", - "value": "/etc/ves-hv/ssl/truststore.p12", + "value": "/etc/ves-hv/ssl/trust.jks", "description": "Points to trust store file which contains trusted client certificates and/or CAs", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { - "name": "security.keys.trustStorePassword", - "value": "onaponap", - "description": "Password for the trust store", + "name": "security.keys.trustStorePasswordFile", + "value": "/etc/ves-hv/ssl/trust.pass", + "description": "File which contains password for the trust store", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false -- cgit 1.2.3-korg