blob: e33cf4827d6cee76d08d152c00a323af92d2664b [file] [log] [blame]
priyanshu3af9db62018-08-16 16:23:52 +05301# Copyright © 2018 Amdocs, Bell Canada
priyanshua1b061392018-05-29 12:50:14 +05302#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
dfx1971b2734ed2019-05-07 10:35:58 +030020 nodePortPrefixExt: 304
priyanshua1b061392018-05-29 12:50:14 +053021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
vasraz8b1f0852023-03-23 13:22:11 +000026image: onap/sdc-workflow-frontend:1.12.0
priyanshua1b061392018-05-29 12:50:14 +053027pullPolicy: Always
28
29# flag to enable debugging - application support required
30debugEnabled: false
31
32config:
r.bogacki861f5072019-09-03 10:16:59 +020033 javaOptions: "-Xmx256m -Xms256m"
othman touijer2b764d02022-01-05 14:40:37 +010034 backendServerURL:
othman touijer2b764d02022-01-05 14:40:37 +010035 http: "http://sdc-wfd-be:8080"
IlanaPc80bff92019-11-18 21:10:08 +020036 # following flag decides whether to check the certificate on the outgoing proxy request or whether to trust all parties
37 isTrustAll: true
dfx1971b2734ed2019-05-07 10:35:58 +030038# https relevant settings. Change in case you have other trust files then default ones.
ChrisC742a7b22020-09-04 11:29:57 +020039
40#environment file
41env:
42 name: AUTO
43
dfx1971b2734ed2019-05-07 10:35:58 +030044security:
r.bogacki08a72d62019-10-01 08:43:44 +020045 isDefaultStore: false
priyanshua1b061392018-05-29 12:50:14 +053046
47# default number of instances
48replicaCount: 1
49
50nodeSelector: {}
51
52affinity: {}
53
54# probe configuration parameters
55liveness:
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020056 initialDelaySeconds: 1
priyanshua1b061392018-05-29 12:50:14 +053057 periodSeconds: 10
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020058 successThreshold: 1
59 failureThreshold: 3
priyanshua1b061392018-05-29 12:50:14 +053060 # necessary to disable liveness probe when setting breakpoints
61 # in debugger so K8s doesn't restart unresponsive container
62 enabled: true
63
64readiness:
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020065 initialDelaySeconds: 1
priyanshua1b061392018-05-29 12:50:14 +053066 periodSeconds: 10
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020067 successThreshold: 1
68 failureThreshold: 3
69
70startup:
71 initialDelaySeconds: 10
72 periodSeconds: 10
73 successThreshold: 1
74 failureThreshold: 60
priyanshua1b061392018-05-29 12:50:14 +053075
76service:
77 type: NodePort
78 internalPort: 8080
Andreas Geisslerdd34ead2023-03-20 17:16:45 +010079 ports:
80 - name: http
81 port: 8080
82 port_protocol: http
83 nodePort: '56'
84 annotations:
85 msb.onap.org/service-info: |
86 {{ if .Values.global.msbEnabled -}}[
87 {
88 "serviceName": "wf-gui",
89 "version": "v1",
90 "url": "/",
91 "protocol": "UI",
92 "port": "{{ .Values.service.internalPort }}",
93 "visualRange":"0|1"
94 }
95 ]{{ end }}
priyanshua1b061392018-05-29 12:50:14 +053096
97ingress:
98 enabled: false
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +010099 service:
Andreas Geissler51900a92022-08-03 13:10:35 +0200100 - baseaddr: "sdc-wfd-fe-ui"
Lucjan Bryndzaa0abab12019-11-28 11:00:50 +0100101 name: "sdc-wfd-fe"
Andreas Geisslerdd34ead2023-03-20 17:16:45 +0100102 port: 8080
priyanshua1b061392018-05-29 12:50:14 +0530103
AndrewLambb304a322023-04-11 17:05:54 +0100104serviceMesh:
105 authorizationPolicy:
106 authorizedPrincipals:
107 - serviceAccount: sdc-fe-read
108 - serviceAccount: istio-ingress
109 namespace: istio-ingress
110
ChrisC32172342020-10-02 16:39:13 +0200111# Resource Limit flavor -By Default using small
112# Segregation for Different environment (Small and Large)
113flavor: small
114resources:
115 small:
116 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100117 cpu: "1"
118 memory: "1Gi"
ChrisC32172342020-10-02 16:39:13 +0200119 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100120 cpu: "0.5"
121 memory: "1Gi"
ChrisC32172342020-10-02 16:39:13 +0200122 large:
123 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100124 cpu: "2"
125 memory: "2Gi"
ChrisC32172342020-10-02 16:39:13 +0200126 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100127 cpu: "1"
128 memory: "2Gi"
ChrisC32172342020-10-02 16:39:13 +0200129 unlimited: {}
farida azmy1383b4c2021-04-06 12:33:31 +0200130
131#Pods Service Account
132serviceAccount:
133 nameOverride: sdc-wfd-fe
134 roles:
135 - read
Maciej Wereski771ec2a2021-10-14 13:59:12 +0000136
137#Log configuration
138log:
139 path: /var/log/onap
140logConfigMapNamePrefix: '{{ include "common.fullname" . }}'