8686db49babc46454d56ee08800464421101f8c3
[oom.git] / kubernetes / dcaegen2 / components / dcae-servicechange-handler / values.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
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 # ============LICENSE_END=========================================================
17
18 #################################################################
19 # Global configuration defaults.
20 #################################################################
21 global:
22   nodePortPrefix: 302
23   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
24
25 config:
26   logstashServiceName: log-ls
27   logstashPort: 5044
28   address:
29     # Addresses of ONAP components
30     message_router: message-router
31     sdc: sdc-be
32 #################################################################
33 # Application configuration defaults.
34 #################################################################
35 # application image
36 image: onap/org.onap.dcaegen2.platform.servicechange-handler:1.4.0
37
38 pullPolicy: Always
39
40 # configuration for accessing SDC
41 sdc:
42   user: "dcae"
43   password: !!str Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
44   environmentName: "AUTO"
45   useHttps: false
46
47 # configuration for accessing DMaaP
48 dmaap:
49   useHttps: false
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 30
54   periodSeconds: 30
55   script: /opt/health.sh
56   # necessary to disable liveness probe when setting breakpoints
57   # in debugger so K8s doesn't restart unresponsive container
58   # liveness not desirable for Cloudify Manager container
59   enabled: false
60
61 readiness:
62   initialDelaySeconds: 30
63   periodSeconds: 30
64   script: /opt/health.sh
65
66
67 # Resource Limit flavor -By Default using small
68 flavor: small
69 # Segregation for Different environment (Small and Large)
70 resources:
71   small:
72     limits:
73       cpu: 2
74       memory: 2Gi
75     requests:
76       cpu: 1
77       memory: 1Gi
78   large:
79     limits:
80       cpu: 4
81       memory: 4Gi
82     requests:
83       cpu: 2
84       memory: 2Gi
85   unlimited: {}
86 # Kubernetes namespace for components deployed via Cloudify manager
87 # If empty, use the common namespace
88 # dcae_ns: "dcae"
89
90 #Pods Service Account
91 serviceAccount:
92   nameOverride: dcae-servicechange-handler
93   roles:
94     - read