Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / cds / components / cds-command-executor / values.yaml
1 # Copyright (c) 2019 Bell Canada
2 #
3 #  Modifications Copyright (c) 2019 Bell Canada.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   # Change to an unused port prefix range to prevent port conflicts
22   # with other instances running within the same k8s cluster
23   nodePortPrefix: 302
24
25   # image pull policy
26   pullPolicy: Always
27
28   persistence:
29     mountPath: /dockerdata-nfs
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34 # application image
35 image: onap/ccsdk-commandexecutor:1.5.3
36 pullPolicy: Always
37
38 # application configuration
39 config:
40   basicAuth: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
41
42 # default number of instances
43 replicaCount: 1
44
45 nodeSelector: {}
46
47 affinity: {}
48
49 # probe configuration parameters
50 liveness:
51   initialDelaySeconds: 20
52   periodSeconds: 20
53   timeoutSeconds: 20
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   timeoutSeconds: 20
62
63 service:
64   type: ClusterIP
65   name: cds-command-executor
66   internalPort: 50051
67   ports:
68     - name: grpc
69       port: 50051
70     - name: &metricsPortname tcp-metrics
71       port: &metricsPort 10005
72
73 persistence:
74   enabled: false
75   mountSubPath: cds/blueprints/deploy
76   deployedBlueprint: /opt/app/onap/blueprints/deploy
77
78 ingress:
79   enabled: false
80
81 resources:
82   small:
83     limits:
84       cpu: "1"
85       memory: "200Mi"
86     requests:
87       cpu: "0.5"
88       memory: "200Mi"
89   large:
90     limits:
91       cpu: "2"
92       memory: "400Mi"
93     requests:
94       cpu: "1"
95       memory: "400Mi"
96   unlimited: {}
97
98 #Pods Service Account
99 serviceAccount:
100   nameOverride: cds-command-executor
101   roles:
102     - read
103
104 metrics:
105   serviceMonitor:
106     enabled: false
107     port: *metricsPortname
108     internalPort: *metricsPort
109     path: /actuator/prometheus
110     basicAuth:
111       enabled: false
112       externalSecretName: mysecretname
113       externalSecretUserKey: login
114       externalSecretPasswordKey: password
115     selector:
116       app: '{{ include "common.name" . }}'
117       chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
118       release: '{{ .Release.Name }}'
119       heritage: '{{ .Release.Service }}'