[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / pomba / components / pomba-networkdiscoveryctxbuilder / 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/pomba-network-discovery-context-builder: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 Context Builder REST Service
35   networkDiscoveryCtxBuilderHttpProtocol: http
36   networkDiscoveryCtxBuilderPort: 9530
37   networkDiscoveryCtxBuilderUserId: admin
38   networkDiscoveryCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
39   networkDiscoveryCtxBuilderResourceList: vnfcs,vservers,l3-networks
40
41   # Service Decomposition REST Client Configuration
42   serviceDecompositionHttpProtocol: http
43   serviceDecompositionServiceName: pomba-servicedecomposition
44   serviceDecompositionPort: 9532
45   serviceDecompositionInstancePath: /service-decomposition/service/context
46   #Basic Authorization Client credentials for Service Decomposition REST service
47   serviceDecompositionUserId: admin
48   serviceDecompositionPassword: OBF:1u2a1toa1w8v1tok1u30
49
50   # Network Discovery Micro Service REST Client Configuration
51   networkDiscoveryServiceName: pomba-networkdiscovery
52   networkDiscoveryPort: 9531
53   networkDiscoveryHttpProtocol: https
54   networkDiscoveryPath: /network-discovery/v1/network/resource
55   # Wait for Network Discovery MicroService response in milliseconds
56   networkDiscoveryTimeOutInMilliseconds: 60000
57   # Basic Authorization credentials for Network Discovery Micro Service Rest Service
58   networkDiscoveryUserId: admin
59   networkDiscoveryPassword: OBF:1u2a1toa1w8v1tok1u30
60
61 # default number of instances
62 replicaCount: 1
63
64 nodeSelector: {}
65
66 affinity: {}
67
68 # probe configuration parameters
69 liveness:
70   initialDelaySeconds: 30
71   periodSeconds: 10
72   # necessary to disable liveness probe when setting breakpoints
73   # in debugger so K8s doesn't restart unresponsive container
74   enabled: true
75
76 readiness:
77   initialDelaySeconds: 30
78   periodSeconds: 10
79
80 #Example service definition with external, internal and node ports.
81 service:
82   # The default service name (exposed in the service.yaml) will be the same
83   # name as the chart. If the service name needs to be overriden (such as
84   # when a subchart is shared), uncomment the value below.
85   #name: <service-name-override>
86
87   #Services may use any combination of ports depending on the 'type' of
88   #service being defined.
89   type: ClusterIP
90   externalPort: 9530
91   internalPort: 8080
92 #  nodePort: <replace with unused node port suffix eg. 23>
93   # optional port name override - default can be defined in service.yaml
94   #portName: http
95
96 ingress:
97   enabled: false
98
99 # Resource Limit flavor -By Default using small
100 flavor: small
101 # Segregation for Different environment (Small and Large)
102 resources:
103   small:
104     limits:
105       cpu: 1
106       memory: 800Mi
107     requests:
108       cpu: 100m
109       memory: 400Mi
110   large:
111     limits:
112       cpu: 2
113       memory: 1600Mi
114     requests:
115       cpu: 200m
116       memory: 800Mi
117   unlimited: {}