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