blob: e89deee825731c4a6e2ec26b73a3739a968f05dc [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: []
Scott Bakerc9d3d842021-09-17 11:32:53 -070018
Matteo Scandolo73b03402022-03-02 11:18:41 -080019gnmiEndpoint: onos-config:5150
kmarquardsen03945402022-03-16 14:41:06 -070020analyticsEndpoint: http://aether-roc-umbrella-prometheus-acc-server:9090
Matteo Scandolo73b03402022-03-02 11:18:41 -080021gnmiTimeout: 10s
22port: 8181
23
Scott Bakerc9d3d842021-09-17 11:32:53 -070024# Needed for development only - set to blank otherwise
25corsOrigins:
26 - http://localhost:4200
27
Sean Condon2a3b5b72021-10-06 13:29:03 +010028# Enable by giving a value like http://k3u-keycloak:80/auth/realms/master
29# make sure this is reachable at http://k3u-keycloak:80/auth/realms/master/.well-known/openid-configuration
30openidc:
31 issuer:
32
Scott Bakerc9d3d842021-09-17 11:32:53 -070033store: {}
34
35service:
36 type: ClusterIP
37
38resources: {}
39 # We usually recommend not to specify default resources and to leave this as a conscious
40 # choice for the user. This also increases chances charts run on environments with little
41 # resources, such as Minikube. If you do want to specify resources, uncomment the following
42 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
43 # limits:
44 # cpu: 100m
45 # memory: 128Mi
46 # requests:
47 # cpu: 100m
48 # memory: 128Mi
49
50nodeSelector: {}
51
52tolerations: []
53
54affinity: {}
55
56logging:
57 loggers:
58 root:
59 level: info
60 output:
61 stdout:
62 sink: stdout
63 sinks:
64 stdout:
65 type: stdout
66 stdout: {}