blob: fa019b8a5b73dbb61e2a4a1b0a1b8bc102718f37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Copyright © 2022, Deutsche Telekom
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
global:
env:
KEYCLOAK_URL: http://keycloak-keycloakx-http.keycloak
KEYCLOAK_REALM: ONAP
ingress:
virtualhost:
# Default Ingress base URL
# can be overwritten in component by setting ingress.baseurlOverride
baseurl: "simpledemo.onap.org"
# prefix for baseaddr
# can be overwritten in component by setting ingress.preaddrOverride
preaddr: ""
# postfix for baseaddr
# can be overwritten in component by setting ingress.postaddrOverride
postaddr: ""
# Default values for ui.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
imageName: onap/portal-ng/ui
pullPolicy: Always
# Overrides the image tag whose default value is the chart appVersion.
# tag: 0.1.0
replicaCount: 1
# Specifies how many old replicas will be retained in a deployment
revisionHistoryLimit: 2
nameOverride: ""
fullnameOverride: ""
# This is the overall name on which this component is ar part of.
partOf: portal
service:
type: ClusterIP
internalPort: 8080
ports:
- name: http
port: 8080
port_protocol: http
ingress:
enabled: true
service:
- baseaddr: "portal-ng-ui"
name: "portal-ng-ui"
port: 8080
config:
ssl: "redirect"
resources:
small:
limits:
cpu: "2"
memory: "1Gi"
requests:
cpu: "50m"
memory: "128Mi"
large:
limits:
cpu: "4"
memory: "2Gi"
requests:
cpu: "100m"
memory: "256Mi"
unlimited: {}
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 80
probes:
readiness:
initialDelaySeconds: 20
failureThreshold: 4
liveness:
initialDelaySeconds: 20
failureThreshold: 4
nodeSelector: {}
tolerations: []
affinity: {}
env:
NAME_SERVER: coredns.kube-system
KEYCLOAK_EXTERNAL_URL: https://keycloak-ui.simpledemo.onap.org
BFF_URL: http://portal-ng-bff.onap.svc.cluster.local:9080
NGINX_PORT: 8080
#Pods Service Account
serviceAccount:
nameOverride: portal-ng-ui
roles:
- read
nginx:
tilesPath: /usr/share/nginx/html/assets/tiles/tiles.json
tilesIconsPath: /usr/share/nginx/html/assets/images/tiles
tiles:
SDC_URL: "sdc-fe-ui"
POLICY_URL: "policy-ui"
SO_URL: "so-admin-cockpit-ui"
CDS_URL: "cds-ui"
HOLMES_URL: "holmes-rule-mgmt-ui"
AAI_URL: "aai-sparkybe-api"
SDNCDG_URL: "sdnc-dgbuilder-ui"
SDNCODL_URL: "sdnc-web-ui"
acl:
portal_admin:
- users.administration.list
- users.administration.detail
- users.administration.create
- users.administration.edit
- users.administration.delete
- dashboard.tile.USER_LAST_ACTION_TILE
portal_operator:
- dashboard.tile.USER_LAST_ACTION_TILE
portal_designer:
- dashboard.tile.USER_LAST_ACTION_TILE
securityContext:
user_id: 101
group_id: 101
|