blob: fd7069450e92589d7c7ce72c64c7ed38c042156b [file] [log] [blame]
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +00001#============LICENSE_START========================================================
2# ================================================================================
Jack Lucasc6861312020-03-03 15:57:59 -05003# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +00004# ================================================================================
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#################################################################
21global:
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
Jack Lucasc70bc7e2019-09-23 09:02:31 -040028 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000029
30config:
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
46repository: nexus3.onap.org:10001
Jack Lucas00efe372020-03-11 13:48:20 -040047image: onap/org.onap.ccsdk.dashboard.ccsdk-app-os:1.3.2
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000048pullPolicy: Always
49
50# probe configuration parameters
51liveness:
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
59readiness:
60 initialDelaySeconds: 30
61 periodSeconds: 30
62 path: /ccsdk-app/health
Vijay Venkatesh Kumar694394b2020-02-20 21:50:14 +000063 scheme: HTTPS
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000064
65service:
66 type: NodePort
67 name: dashboard
Vijay Venkatesh Kumar694394b2020-02-20 21:50:14 +000068 externalPort: 8443
69 internalPort: 8443
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000070 nodePort: 18
71# application configuration override for postgres
72postgres:
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
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000092
93# Resource Limit flavor -By Default using small
94flavor: small
95# Segregation for Different environment (Small and Large)
96resources:
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"