blob: 65016983888306ba84429248473a14149eb5f8cb [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
ChrisC742a7b22020-09-04 11:29:57 +020024 aafEnabled: true
25
26#################################################################
27# AAF Part
28#################################################################
29certInitializer:
30 nameOverride: sdc-fe-cert-init
31 aafDeployFqi: deployer@people.osaaf.org
32 aafDeployPass: demo123456!
33 fqdn: sdc
34 fqi: sdc@sdc.onap.org
35 public_fqdn: sdc.onap.org
36 cadi_longitude: "0.0"
37 cadi_latitude: "0.0"
38 app_ns: org.osaaf.aaf
39 credsPath: /opt/app/osaaf/local
40 addconfig: true
41 keystoreFile: "org.onap.sdc.p12"
42 truststoreFile: "org.onap.sdc.trust.jks"
43 permission_user: 352070
44 permission_group: 35953
45 aaf_add_config: >
46 /opt/app/aaf_config/bin/agent.sh local showpass
47 {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
Mandeep Khindaa1047f42018-03-22 02:12:15 +000048
49#################################################################
50# Application configuration defaults.
51#################################################################
52# application image
53repository: nexus3.onap.org:10001
ChrisC7ab57312020-08-12 16:24:38 +020054image: onap/sdc-frontend:1.7.1
Mandeep Khindaa1047f42018-03-22 02:12:15 +000055pullPolicy: Always
56
Mandeep Khinda403c1c12018-04-19 23:15:43 +000057config:
r.bogackic535c932019-09-03 10:34:12 +020058 javaOptions: "-Xmx256m -Xms256m"
shrikantawachar0c84bc32019-01-16 13:12:21 +053059 plugins:
k.kedronc784bbd2019-09-05 18:28:16 +020060 dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home"
61 dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
62 dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
63 dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
IlanaPc80bff92019-11-18 21:10:08 +020064 workflow_discovery_url: "https://sdc-wfd-fe:8443/workflows"
65 workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30256/workflows/"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000066
ChrisC742a7b22020-09-04 11:29:57 +020067#environment file
68env:
69 name: AUTO
70
71security:
72 disableHttp: true
73
Mandeep Khindaa1047f42018-03-22 02:12:15 +000074# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
83 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050084 periodSeconds: 60
85 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000086 # necessary to disable liveness probe when setting breakpoints
87 # in debugger so K8s doesn't restart unresponsive container
88 enabled: true
89
90readiness:
91 initialDelaySeconds: 10
Brian Freeman6142d942019-10-02 09:50:19 -050092 periodSeconds: 60
93 timeoutSeconds: 15
Mandeep Khindaa1047f42018-03-22 02:12:15 +000094
95service:
96 #Example service definition with external, internal and node ports.
97 #Services may use any combination of ports depending on the 'type' of
98 #service being defined.
99 type: NodePort
100 name: sdc-fe
BorislavG1ffbd992018-04-24 07:56:27 +0000101 portName: sdc-fe
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000102 nodePort: "06"
103 internalPort: 8181
Mandeep Khindafe527eb2018-10-16 09:56:34 -0400104 externalPort: 8181
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000105 nodePort2: "07"
106 internalPort2: 9443
Mandeep Khindafe527eb2018-10-16 09:56:34 -0400107 externalPort2: 9443
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000108
109
110
111ingress:
112 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +0100113 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +0000114 - baseaddr: "sdc.api.fe"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +0100115 name: "sdc-fe"
116 port: 9443
117 config:
118 ssl: "redirect"
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000119
Mukula93baa82018-09-19 15:56:58 +0000120# Resource Limit flavor -By Default using small
121flavor: small
122# Segregation for Different environment (Small and Large)
123resources:
124 small:
125 limits:
126 cpu: 1
127 memory: 4Gi
128 requests:
129 cpu: 10m
130 memory: 1Gi
131 large:
132 limits:
133 cpu: 2
134 memory: 8Gi
135 requests:
136 cpu: 20m
137 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000138 unlimited: {}