blob: a30e578687019bd13b979e1eab10b7d56b9d4a5a [file] [log] [blame]
Sean Condon670605a2021-12-13 12:58:20 +00001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Sean Condon670605a2021-12-13 12:58:20 +00004
5# Default values for aether-enterprise-portal.
6# This is a YAML-formatted file.
7# Declare variables to be passed into your templates.
8
9replicaCount: 1
10
11image:
12 repository: onosproject/aether-enterprise-portal
Sean Condonfe2c9742022-03-25 16:42:49 +000013 tag: v0.1.1
Sean Condon670605a2021-12-13 12:58:20 +000014 pullPolicy: IfNotPresent
15 pullSecrets: []
16
17imagePullSecrets: []
18nameOverride: ""
19fullnameOverride: "aether-enterprise-portal"
20
21## Client service.
22service:
23 enabled: true
24 ## Service name is user-configurable for maximum service discovery flexibility.
25 name: aether-enterprise-portal
26 type: LoadBalancer
27 external:
28 nodePort: 31195
29
30ingress:
31 enabled: false
32
33ports:
34 web:
35 containerPort: 80
36 protocol: TCP
37
38# Enable by giving a value like https://keycloak-dev.onlab.us/auth/realms/master
39# make sure this is reachable at https://keycloak-dev.onlab.us/auth/realms/master/.well-known/openid-configuration
40openidc:
41 issuer:
42
43resources: {}
44 # We usually recommend not to specify default resources and to leave this as a conscious
45 # choice for the user. This also increases chances charts run on environments with little
46 # resources, such as Minikube. If you do want to specify resources, uncomment the following
47 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
48 # limits:
49 # cpu: 100m
50 # memory: 128Mi
51 # requests:
52 # cpu: 100m
53 # memory: 128Mi
54
55nodeSelector: {}
56
57tolerations: []
58
59affinity: {}
60
61aetherservices:
62 chronos-exporter:
63 http: 2112
64 protocol: http
65 streamTimeout: 3600
66
Sean Condonfe2c9742022-03-25 16:42:49 +000067rasa:
68 proxyEnabled: false
69 service: rasa
70 protocol: http
71 port: 5005
72
73mailhog:
74 proxyEnabled: false
75 service: mailhog
76 protocol: http
77 port: 8025
78
Sean Condon670605a2021-12-13 12:58:20 +000079grafana:
80 proxyEnabled: false
81 service: grafana
82 protocol: http
83 port: 80
84
85prometheus:
86 proxyEnabled: false
87 service: prometheus
88 protocol: http
89 port: 80
Sean Condon36c82252022-03-16 09:49:40 +000090 credentials:
91 username: toBeOverridden
92 password: toBeOverridden
Sean Condon670605a2021-12-13 12:58:20 +000093
94Nginx:
95 port: 80