blob: d05fe0629737a6e31ba6d28147412179d06cc7be [file] [log] [blame]
Scott Bakerc9d3d842021-09-17 11:32:53 -07001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Scott Bakerc9d3d842021-09-17 11:32:53 -07004
5# Default values for aether-roc-api.
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-api
Matteo Scandolo73b03402022-03-02 11:18:41 -080013 tag: "{{ .Chart.AppVersion }}"
Scott Bakerc9d3d842021-09-17 11:32:53 -070014 pullPolicy: IfNotPresent
15 pullSecrets: []
Scott Bakerc9d3d842021-09-17 11:32:53 -070016
17imagePullSecrets: []
18nameOverride: ""
19fullnameOverride: "aether-roc-api"
20
Matteo Scandolo73b03402022-03-02 11:18:41 -080021gnmiEndpoint: onos-config:5150
kmarquardsen03945402022-03-16 14:41:06 -070022analyticsEndpoint: http://aether-roc-umbrella-prometheus-acc-server:9090
Matteo Scandolo73b03402022-03-02 11:18:41 -080023gnmiTimeout: 10s
24port: 8181
25
Scott Bakerc9d3d842021-09-17 11:32:53 -070026# Needed for development only - set to blank otherwise
27corsOrigins:
28 - http://localhost:4200
29
Sean Condon2a3b5b72021-10-06 13:29:03 +010030# Enable by giving a value like http://k3u-keycloak:80/auth/realms/master
31# make sure this is reachable at http://k3u-keycloak:80/auth/realms/master/.well-known/openid-configuration
32openidc:
33 issuer:
34
Scott Bakerc9d3d842021-09-17 11:32:53 -070035store: {}
36
37service:
38 type: ClusterIP
39
40resources: {}
41 # We usually recommend not to specify default resources and to leave this as a conscious
42 # choice for the user. This also increases chances charts run on environments with little
43 # resources, such as Minikube. If you do want to specify resources, uncomment the following
44 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
45 # limits:
46 # cpu: 100m
47 # memory: 128Mi
48 # requests:
49 # cpu: 100m
50 # memory: 128Mi
51
52nodeSelector: {}
53
54tolerations: []
55
56affinity: {}
57
58logging:
59 loggers:
60 root:
61 level: info
62 output:
63 stdout:
64 sink: stdout
65 sinks:
66 stdout:
67 type: stdout
68 stdout: {}