Update CMSO OOM to use HTTPS and AAF
[oom.git] / kubernetes / oof / charts / oof-cmso / charts / oof-cmso-service / values.yaml
1 # Copyright © 2018-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   pythonRepository: library
23   pythonImage: python:3.6-alpine
24
25 subChartsOnly:
26   enabled: true
27
28 # application image
29 repository: nexus3.onap.org:10001
30 image: onap/optf-cmso-service:latest
31 pullPolicy: Always
32
33 #init container image
34 dbinit:
35   image: onap/optf-cmso-dbinit:latest
36
37 # flag to enable debugging - application support required
38 debugEnabled: false
39
40 #################################################################
41 # Application configuration defaults.
42 #################################################################
43 # default number of instances
44 replicaCount: 1
45
46 nodeSelector: {}
47
48 affinity: {}
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 120
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   enabled: true
57
58 readiness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61
62
63 service:
64   type: ClusterIP
65   name: oof-cmso
66   portName: cmso
67   internalPort: 8080
68   externalPort: 8080
69   #nodePort: 23
70   # as of 20181022 port 23 is reserved for cmso
71   # see https://wiki.onap.org/display/DW/OOM+NodePort+List
72
73
74 config:
75   db_root: root
76   db_user: cmso-admin
77   mysqlDatabase: cmso
78   db_host: oof-cmso-dbhost
79   db_port: 3306
80   optimizer_host: oof-cmso-optimizer
81   optimizer_port: 7997
82
83 mariadb:
84   nameOverride: cmso-db
85
86 ingress:
87   enabled: false
88
89 #resources: {}
90   # We usually recommend not to specify default resources and to leave this as a conscious
91   # choice for the user. This also increases chances charts run on environments with little
92   # resources, such as Minikube. If you do want to specify resources, uncomment the following
93   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
94   #
95   # Example:
96   # Configure resource requests and limits
97   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
98   # Minimum memory for development is 2 CPU cores and 4GB memory
99   # Minimum memory for production is 4 CPU cores and 8GB memory
100 resources:
101   small:
102     limits:
103       cpu: 1
104       memory: 1.2Gi
105     requests:
106       cpu: 10m
107       memory: 800Mi
108   large:
109     limits:
110       cpu: 1
111       memory: 1.2Gi
112     requests:
113       cpu: 10m
114       memory: 800Mi
115   unlimited: {}