Merge "[DCAEMOD] Uses new tpls for repos / images"
[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.0.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   grpc:
66     portName: command-executor-grpc
67     internalPort: 50051
68     externalPort: 50051
69
70 persistence:
71   enabled: true
72   mountSubPath: cds/blueprints/deploy
73   deployedBlueprint: /opt/app/onap/blueprints/deploy
74
75 ingress:
76   enabled: false
77
78 resources:
79   small:
80     limits:
81       cpu: 2
82       memory: 4Gi
83     requests:
84       cpu: 1
85       memory: 1Gi
86   large:
87     limits:
88       cpu: 4
89       memory: 8Gi
90     requests:
91       cpu: 2
92       memory: 4Gi
93   unlimited: {}