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