blob: 615afc42c2de9bb4160b9895134b6f464eed561e [file] [log] [blame]
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +00001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2019 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#################################################################
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
28 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:1.0.3
29
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
47image: onap/org.onap.ccsdk.dashboard.ccsdk-app-os:1.1.0
48pullPolicy: 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
63 scheme: HTTP
64
65service:
66 type: NodePort
67 name: dashboard
68 externalPort: 8080
69 internalPort: 8080
70 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
92 pgpool:
93 nameOverride: dcae-dashboard-pgpool
94 service:
95 name: dcae-dashboard-pgpool
96 credentials:
97 pgusername: dcae_dashboard
98 pgpassword: onapdemodb
99 container:
100 name:
101 primary: dcae-dashboard-pgpool-primary
102 replica: dcae-dashboard-pgpool-replica
103
104# Resource Limit flavor -By Default using small
105flavor: small
106# Segregation for Different environment (Small and Large)
107resources:
108 small:
109 limits:
110 cpu: 2
111 memory: 2Gi
112 requests:
113 cpu: 1
114 memory: 1Gi
115 large:
116 limits:
117 cpu: 4
118 memory: 4Gi
119 requests:
120 cpu: 2
121 memory: 2Gi
122 unlimited: {}
123# Kubernetes namespace for components deployed via Cloudify manager
124# If empty, use the common namespace
125# dcae_ns: "dcae"
126