blob: 76f3e44ea9c4631093f8a7fbda895d6f64a0968b [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
SeanCondone9d41ad2022-07-12 19:04:48 +010013 tag: v0.9.23
Sean Condon6fc99682022-02-04 10:48:17 +000014 pullPolicy: IfNotPresent
15 pullSecrets: []
16
17imagePullSecrets: []
18nameOverride: ""
19fullnameOverride: "aether-roc-gui-v2"
20
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
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 aether-roc-api:
63 http: 8181
64 protocol: http
65 streamTimeout: 3600
66
67websocket:
68 proxyEnabled: false
69 service: aether-roc-websocket
70 protocol: http
71 port: 80
72
73grafana:
74 proxyEnabled: false
75 service: grafana
76 protocol: http
77 port: 80
78
79prometheus:
80 acc:
81 proxyEnabled: false
82 service: prometheus-acc
83 protocol: http
84 port: 80
85 amp:
86 proxyEnabled: false
87 service: prometheus-amp
88 protocol: http
89 port: 80
90 site: []
91
92Nginx:
93 port: 80