b0c1e35cba41f5872ab38f6972133971b36d7f18
[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.3.0
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   grpc:
66     portName: command-executor-grpc
67     internalPort: 50051
68     externalPort: 50051
69   metrics:
70     portName: command-executor-metrics
71     internalPort: 10005
72     externalPort: 10005
73
74 persistence:
75   enabled: false
76   mountSubPath: cds/blueprints/deploy
77   deployedBlueprint: /opt/app/onap/blueprints/deploy
78
79 ingress:
80   enabled: false
81
82 resources:
83   small:
84     limits:
85       cpu: 2
86       memory: 4Gi
87     requests:
88       cpu: 1
89       memory: 1Gi
90   large:
91     limits:
92       cpu: 4
93       memory: 8Gi
94     requests:
95       cpu: 2
96       memory: 4Gi
97   unlimited: {}
98
99 #Pods Service Account
100 serviceAccount:
101   nameOverride: cds-command-executor
102   roles:
103     - read
104
105 metrics:
106   serviceMonitor:
107     enabled: false
108     port: command-executor-metrics
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 }}'