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