blob: 7d59f9b6da58fa58d4d51dfef2ef57e9e6d9b7cf [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: []
Sean Condon6fc99682022-02-04 10:48:17 +000018
19## Client service.
20service:
21 enabled: true
22 ## Service name is user-configurable for maximum service discovery flexibility.
23 name: aether-roc-gui
SeanCondon4346ab92022-11-30 13:33:08 +000024 type: NodePort
Sean Condon6fc99682022-02-04 10:48:17 +000025 external:
26 nodePort: 31194
27
28ingress:
29 enabled: false
30
31ports:
32 web:
33 containerPort: 80
34 protocol: TCP
35
36# Enable by giving a value like http://k3u-keycloak:5557/auth/realms/master
37# make sure this is reachable at http://k3u-keycloak:5557/auth/realms/master/.well-known/openid-configuration
38openidc:
39 issuer:
40
SeanCondon34f31872022-07-22 16:37:09 +010041feature:
42 aether: true
43 sdnfabric: true
44
Sean Condon6fc99682022-02-04 10:48:17 +000045resources: {}
46 # We usually recommend not to specify default resources and to leave this as a conscious
47 # choice for the user. This also increases chances charts run on environments with little
48 # resources, such as Minikube. If you do want to specify resources, uncomment the following
49 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
50 # limits:
51 # cpu: 100m
52 # memory: 128Mi
53 # requests:
54 # cpu: 100m
55 # memory: 128Mi
56
57nodeSelector: {}
58
59tolerations: []
60
61affinity: {}
62
63aetherservices:
64 aether-roc-api:
SeanCondon9a99c262023-01-09 17:20:49 +000065 service: "{{ .Release.Name }}-aether-roc-api"
Sean Condon6fc99682022-02-04 10:48:17 +000066 http: 8181
67 protocol: http
68 streamTimeout: 3600
69
Sean Condon6fc99682022-02-04 10:48:17 +000070grafana:
71 proxyEnabled: false
72 service: grafana
73 protocol: http
74 port: 80
75
76prometheus:
77 acc:
78 proxyEnabled: false
79 service: prometheus-acc
80 protocol: http
81 port: 80
82 amp:
83 proxyEnabled: false
84 service: prometheus-amp
85 protocol: http
86 port: 80
87 site: []
88
89Nginx:
90 port: 80