[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / pomba / components / pomba-networkdiscovery / values.yaml
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20
21 #################################################################
22 # Application configuration defaults.
23 #################################################################
24 # application image
25 image:  onap/network-discovery:1.5.1
26 pullPolicy: Always
27
28 # flag to enable debugging - application support required
29 debugEnabled: false
30
31 # application configuration
32 # Example:
33 config:
34   # Network Discovery Micro Service REST Client Configuration
35
36   #Enable HTTPS
37   serverSslPort: 8443
38   serverSslKeyStore: /opt/app/config/auth/tomcat_keystore
39   serverSslKeyStorePassword: password(OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10)
40   serverSslClientAuth: want
41   serverSslEnabled: true
42   serverSslEnabledProtocols: TLSv1.1,TLSv1.2
43
44   # Basic Authorization credentials for Network Discovery Micro Service Rest Service
45   networkDiscoveryUserId: admin
46   networkDiscoveryPassword: OBF:1u2a1toa1w8v1tok1u30
47
48   # Basic Authorization credentials for Openstack Rest APIs
49   openstackIdentityUrl: http://10.69.36.11:5000/v3/auth/tokens
50   openstackUserId: admin
51   openstackPassword: OBF:1w951ugg1vun1uha1w8l
52
53   # Openstack Rest API URLs:
54   openstackTypeVserverUrl: http://10.69.36.11:8774/v2.1/servers/{0}
55   openstackTypeL3NetworkUrl: http://10.69.36.11:9696/v2.0/networks/{0}
56   openstackTypePortUrl: http://10.69.36.11:9696/v2.0/ports/{0}
57
58 # default number of instances
59 replicaCount: 1
60
61 nodeSelector: {}
62
63 affinity: {}
64
65 # probe configuration parameters
66 liveness:
67   initialDelaySeconds: 30
68   periodSeconds: 10
69   # necessary to disable liveness probe when setting breakpoints
70   # in debugger so K8s doesn't restart unresponsive container
71   enabled: true
72
73 readiness:
74   initialDelaySeconds: 30
75   periodSeconds: 10
76
77 #Example service definition with external, internal and node ports.
78 service:
79   # The default service name (exposed in the service.yaml) will be the same
80   # name as the chart. If the service name needs to be overriden (such as
81   # when a subchart is shared), uncomment the value below.
82   #name: <service-name-override>
83
84   #Services may use any combination of ports depending on the 'type' of
85   #service being defined.
86   type: NodePort
87   name: pomba-networkdiscovery
88   externalPort: 9531
89   internalPort: 8443
90   nodePort: 99
91   portName: https
92
93 ingress:
94   enabled: false
95   service:
96     - baseaddr: "pombanetworkdiscovery"
97       name: "pomba-networkdiscovery"
98       port: 8443
99   config:
100     ssl: "redirect"
101
102 # Resource Limit flavor -By Default using small
103 flavor: small
104 # Segregation for Different environment (Small and Large)
105 resources:
106   small:
107     limits:
108       cpu: 1
109       memory: 800Mi
110     requests:
111       cpu: 10m
112       memory: 400Mi
113   large:
114     limits:
115       cpu: 2
116       memory: 1600Mi
117     requests:
118       cpu: 20m
119       memory: 800Mi
120   unlimited: {}