Sean Condon | 6fc9968 | 2022-02-04 10:48:17 +0000 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org> |
| 2 | # |
Sean Condon | 160ec1d | 2022-02-08 12:58:25 +0000 | [diff] [blame] | 3 | # SPDX-License-Identifier: Apache-2.0 |
Sean Condon | 6fc9968 | 2022-02-04 10:48:17 +0000 | [diff] [blame] | 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 | |
| 9 | replicaCount: 1 |
| 10 | |
| 11 | image: |
| 12 | repository: onosproject/aether-roc-gui |
Matteo Scandolo | c640dcf | 2022-03-07 13:27:06 -0800 | [diff] [blame] | 13 | tag: v0.9.10 |
Sean Condon | 6fc9968 | 2022-02-04 10:48:17 +0000 | [diff] [blame] | 14 | pullPolicy: IfNotPresent |
| 15 | pullSecrets: [] |
| 16 | |
| 17 | imagePullSecrets: [] |
| 18 | nameOverride: "" |
| 19 | fullnameOverride: "aether-roc-gui-v2" |
| 20 | |
| 21 | ## Client service. |
| 22 | service: |
| 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 | |
| 30 | ingress: |
| 31 | enabled: false |
| 32 | |
| 33 | ports: |
| 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 |
| 40 | openidc: |
| 41 | issuer: |
| 42 | |
| 43 | resources: {} |
| 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 | |
| 55 | nodeSelector: {} |
| 56 | |
| 57 | tolerations: [] |
| 58 | |
| 59 | affinity: {} |
| 60 | |
| 61 | aetherservices: |
| 62 | aether-roc-api: |
| 63 | http: 8181 |
| 64 | protocol: http |
| 65 | streamTimeout: 3600 |
| 66 | |
| 67 | websocket: |
| 68 | proxyEnabled: false |
| 69 | service: aether-roc-websocket |
| 70 | protocol: http |
| 71 | port: 80 |
| 72 | |
| 73 | grafana: |
| 74 | proxyEnabled: false |
| 75 | service: grafana |
| 76 | protocol: http |
| 77 | port: 80 |
| 78 | |
| 79 | prometheus: |
| 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 | |
| 92 | Nginx: |
| 93 | port: 80 |