Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / oof / components / oof-cmso / components / oof-cmso-topology / values.yaml
1 # Copyright © 2018 AT&T
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: # global defaults
19   nodePortPrefix: 302
20
21 subChartsOnly:
22   enabled: true
23
24 # application image
25 image: onap/optf-cmso-topology:2.3.0
26 pullPolicy: Always
27
28
29 # flag to enable debugging - application support required
30 debugEnabled: false
31
32 #################################################################
33 # Application configuration defaults.
34 #################################################################
35 # default number of instances
36 replicaCount: 1
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 # probe configuration parameters
43 liveness:
44   initialDelaySeconds: 120
45   periodSeconds: 10
46   # necessary to disable liveness probe when setting breakpoints
47   # in debugger so K8s doesn't restart unresponsive container
48   enabled: true
49
50 readiness:
51   initialDelaySeconds: 120
52   periodSeconds: 10
53
54
55 service:
56   type: ClusterIP
57   name: oof-cmso-topology
58   portName: cmso-topology
59   internalPort: 7998
60   externalPort: 7998
61   #nodePort: 23
62   # as of 20181022 port 23 is reserved for cmso
63   # see https://wiki.onap.org/display/DW/OOM+NodePort+List
64
65
66 config:
67
68 ingress:
69   enabled: false
70
71 #resources: {}
72   # We usually recommend not to specify default resources and to leave this as a conscious
73   # choice for the user. This also increases chances charts run on environments with little
74   # resources, such as Minikube. If you do want to specify resources, uncomment the following
75   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
76   #
77   # Example:
78   # Configure resource requests and limits
79   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
80   # Minimum memory for development is 2 CPU cores and 4GB memory
81   # Minimum memory for production is 4 CPU cores and 8GB memory
82 flavor: small
83 resources:
84   small:
85     limits:
86       cpu: 1
87       memory: 1.2Gi
88     requests:
89       cpu: 10m
90       memory: 800Mi
91   large:
92     limits:
93       cpu: 1
94       memory: 1.2Gi
95     requests:
96       cpu: 10m
97       memory: 800Mi
98   unlimited: {}