blob: 46607534ac7f7ce4f0f008463ba600a347e687e3 [file] [log] [blame]
Sean Condon6fc99682022-02-04 10:48:17 +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 Condon6fc99682022-02-04 10:48:17 +00004
5# Default values for aether-roc-gui.
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-roc-gui
SeanCondonbf5f4882022-09-11 17:55:10 +010013 tag: "{{ .Chart.AppVersion }}"
Sean Condon6fc99682022-02-04 10:48:17 +000014 pullPolicy: IfNotPresent
15 pullSecrets: []
16
17imagePullSecrets: []
18nameOverride: ""
SeanCondonbf5f4882022-09-11 17:55:10 +010019fullnameOverride: "aether-roc-gui-v2-1"
Sean Condon6fc99682022-02-04 10:48:17 +000020
21## Client service.
22service:
23 enabled: true
24 ## Service name is user-configurable for maximum service discovery flexibility.
25 name: aether-roc-gui
26 type: LoadBalancer
27 external:
28 nodePort: 31194
29
30ingress:
31 enabled: false
32
33ports:
34 web:
35 containerPort: 80
36 protocol: TCP
37
38# Enable by giving a value like http://k3u-keycloak:5557/auth/realms/master
39# make sure this is reachable at http://k3u-keycloak:5557/auth/realms/master/.well-known/openid-configuration
40openidc:
41 issuer:
42
SeanCondon34f31872022-07-22 16:37:09 +010043feature:
44 aether: true
45 sdnfabric: true
46
Sean Condon6fc99682022-02-04 10:48:17 +000047resources: {}
48 # We usually recommend not to specify default resources and to leave this as a conscious
49 # choice for the user. This also increases chances charts run on environments with little
50 # resources, such as Minikube. If you do want to specify resources, uncomment the following
51 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
52 # limits:
53 # cpu: 100m
54 # memory: 128Mi
55 # requests:
56 # cpu: 100m
57 # memory: 128Mi
58
59nodeSelector: {}
60
61tolerations: []
62
63affinity: {}
64
65aetherservices:
66 aether-roc-api:
67 http: 8181
68 protocol: http
69 streamTimeout: 3600
70
Sean Condon6fc99682022-02-04 10:48:17 +000071grafana:
72 proxyEnabled: false
73 service: grafana
74 protocol: http
75 port: 80
76
77prometheus:
78 acc:
79 proxyEnabled: false
80 service: prometheus-acc
81 protocol: http
82 port: 80
83 amp:
84 proxyEnabled: false
85 service: prometheus-amp
86 protocol: http
87 port: 80
88 site: []
89
90Nginx:
91 port: 80