Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / pomba / components / pomba-networkdiscovery / resources / config / application.properties
1 {{/*
2 # Copyright © 2018 Amdocs
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License
15 */}}
16
17 spring.jersey.type=filter
18
19 #Enable HTTPS
20 server.port={{ .Values.config.serverSslPort }}
21 server.ssl.key-store={{ .Values.config.serverSslKeyStore }}
22 server.ssl.key-store-password={{ .Values.config.serverSslKeyStorePassword }}
23 server.ssl.client-auth={{ .Values.config.serverSslClientAuth }}
24 server.ssl.enabled={{ .Values.config.serverSslEnabled }}
25 server.ssl.enabled-protocols={{ .Values.config.serverSslEnabledProtocols }}
26
27 # Basic Authentication
28 basicAuth.username={{ .Values.config.networkDiscoveryUserId }}
29 basicAuth.password={{ .Values.config.networkDiscoveryPassword }}
30
31 openstack.identity.url ={{ .Values.config.openstackIdentityUrl }}
32 openstack.identity.user ={{ .Values.config.openstackUserId }}
33 openstack.identity.password ={{ .Values.config.openstackPassword }}
34
35 openstack.types = vserver, l3-network, port
36 openstack.type.vserver.url    = {{ .Values.config.openstackTypeVserverUrl }}
37 openstack.type.l3-network.url = {{ .Values.config.openstackTypeL3NetworkUrl }}
38 openstack.type.port.url = {{ .Values.config.openstackTypePortUrl }}
39
40 openstack.api.microversion = 2.42
41