diff options
author | awudzins <adam.wudzinski@nokia.com> | 2020-02-19 13:34:32 +0100 |
---|---|---|
committer | awudzins <adam.wudzinski@nokia.com> | 2020-02-20 12:43:59 +0100 |
commit | d54223e7cd3026e260e06df39dd52c4368e7053d (patch) | |
tree | 8501ab3942fa88201f468a05bf84b600e24c7740 /certService/helm/aaf-cert-service/resources/cmpServers.json | |
parent | e93c679bc9c22e034ba93a48460830716e1f7457 (diff) |
Load CMP Servers config from volume
Create Kubernetes secret to store Cmp Server config file and mount it to container as volume
Issue-ID: AAF-997
Signed-off-by: Adam Wudzinski <adam.wudzinski@nokia.com>
Change-Id: I163b720ce14729328af34dd61e6eb0108c76d58b
Diffstat (limited to 'certService/helm/aaf-cert-service/resources/cmpServers.json')
-rw-r--r-- | certService/helm/aaf-cert-service/resources/cmpServers.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/certService/helm/aaf-cert-service/resources/cmpServers.json b/certService/helm/aaf-cert-service/resources/cmpServers.json new file mode 100644 index 00000000..ee9e72b9 --- /dev/null +++ b/certService/helm/aaf-cert-service/resources/cmpServers.json @@ -0,0 +1,24 @@ +{ + "cmpv2Servers": [ + { + "caName": "TEST", + "url": "http://127.0.0.1/ejbca/publicweb/cmp/cmp", + "issuerDN": "CN=ManagementCA", + "caMode": "CLIENT", + "authentication": { + "iak": "xxx", + "rv": "yyy" + } + }, + { + "caName": "TEST2", + "url": "http://127.0.0.1/ejbca/publicweb/cmp/cmpRA", + "issuerDN": "CN=ManagementCA2", + "caMode": "RA", + "authentication": { + "iak": "xxx", + "rv": "yyy" + } + } + ] +}
\ No newline at end of file |