R6 updates for dcaegen2/dcaemod
[oom.git] / kubernetes / dcaegen2 / components / dcae-dashboard / 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   nodePortPrefixExt: 304
23   readinessRepository: oomk8s
24   readinessImage: readiness-check:2.0.0
25   loggingRepository: docker.elastic.co
26   loggingImage: beats/filebeat:5.5.0
27   tlsRepository: nexus3.onap.org:10001
28   tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
29
30 config:
31   logstashServiceName: log-ls
32   logstashPort: 5044
33   dhandler_url: https://deployment-handler:8443
34   cfy_url: https://dcae-cloudify-manager/api/v3.1
35   inventory_url: https://inventory:8080
36   # Addresses of other ONAP entities
37   address:
38     consul:
39       host: consul-server
40       port: 8500
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45 # application image
46 repository: nexus3.onap.org:10001
47 image: onap/org.onap.ccsdk.dashboard.ccsdk-app-os:1.3.2
48 pullPolicy: Always
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   # liveness not desirable for Cloudify Manager container
57   enabled: false
58
59 readiness:
60   initialDelaySeconds: 30
61   periodSeconds: 30
62   path: /ccsdk-app/health
63   scheme: HTTPS
64
65 service:
66   type: NodePort
67   name: dashboard
68   externalPort: 8443
69   internalPort: 8443
70   nodePort: 18
71 # application configuration override for postgres
72 postgres:
73   nameOverride: dcae-dashboard-pg
74   service:
75     name: dcae-dashboard-postgres
76     name2: dcae-dashboard-pg-primary
77     name3: dcae-dashboard-pg-replica
78   container:
79     name:
80       primary: dcae-dashboard-pg-primary
81       replica: dcae-dashboard-pg-replica
82   config:
83     pgUserName: dashboard_pg_admin
84     pgDatabase: dashboard_pg_db_common
85     pgPrimaryPassword: onapdemodb
86     pgUserPassword: onapdemodb
87     pgRootPassword: onapdemodb
88     pgPort: "5432"
89   persistence:
90     mountSubPath: dcae-dashboard/data
91     mountInitPath: dcae-dashboard
92
93 # Resource Limit flavor -By Default using small
94 flavor: small
95 # Segregation for Different environment (Small and Large)
96 resources:
97   small:
98     limits:
99       cpu: 2
100       memory: 2Gi
101     requests:
102       cpu: 1
103       memory: 1Gi
104   large:
105     limits:
106       cpu: 4
107       memory: 4Gi
108     requests:
109       cpu: 2
110       memory: 2Gi
111   unlimited: {}
112 # Kubernetes namespace for components deployed via Cloudify manager
113 # If empty, use the common namespace
114 # dcae_ns: "dcae"