blob: d543be90e3cf5cefb4189136dfb091ccdd610e3b [file] [log] [blame]
Scott Bakerc9d3d842021-09-17 11:32:53 -07001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2#
3# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
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
Sean Condon8f5c84e2021-11-15 12:56:44 +000013 tag: v0.7.29
Scott Bakerc9d3d842021-09-17 11:32:53 -070014 pullPolicy: IfNotPresent
15 pullSecrets: []
16
17imagePullSecrets: []
18nameOverride: ""
19fullnameOverride: "aether-roc-gui"
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: 31190
29
30ingress:
31 enabled: true
32
33ports:
34 web:
35 containerPort: 80
36 protocol: TCP
37
38# Enable by giving a value like http://dex-ldap-umbrella:5556
39# make sure this is reachable at http://dex-ldap-umbrella:5556/.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-api-websocket
70 protocol: http
71 port: 80
72
73grafana:
74 proxyEnabled: false
75 service: grafana
76 protocol: http
77 port: 80
78
79prometheus:
80 proxyEnabled: false
81 service: prometheus
82 protocol: http
83 port: 80
84
85Nginx:
86 port: 80