blob: 18d7348ea7ae5fd3d22340258ea3abfee22679a1 [file] [log] [blame]
Scott Bakerc9d3d842021-09-17 11:32:53 -07001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2#
3# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4
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
Sean Condon2a3b5b72021-10-06 13:29:03 +010013 tag: v0.8.0
Scott Bakerc9d3d842021-09-17 11:32:53 -070014 pullPolicy: IfNotPresent
15 pullSecrets: []
16 websocketsidecar:
17 repository: onosproject/aether-roc-websocket
18
19imagePullSecrets: []
20nameOverride: ""
21fullnameOverride: "aether-roc-api"
22
23# Needed for development only - set to blank otherwise
24corsOrigins:
25 - http://localhost:4200
26
Sean Condon2a3b5b72021-10-06 13:29:03 +010027# Enable by giving a value like http://k3u-keycloak:80/auth/realms/master
28# make sure this is reachable at http://k3u-keycloak:80/auth/realms/master/.well-known/openid-configuration
29openidc:
30 issuer:
31
Scott Bakerc9d3d842021-09-17 11:32:53 -070032websocketsidecar:
33 enabled: true
34 port: 8120
35
36store: {}
37
38service:
39 type: ClusterIP
40
41resources: {}
42 # We usually recommend not to specify default resources and to leave this as a conscious
43 # choice for the user. This also increases chances charts run on environments with little
44 # resources, such as Minikube. If you do want to specify resources, uncomment the following
45 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
46 # limits:
47 # cpu: 100m
48 # memory: 128Mi
49 # requests:
50 # cpu: 100m
51 # memory: 128Mi
52
53nodeSelector: {}
54
55tolerations: []
56
57affinity: {}
58
59logging:
60 loggers:
61 root:
62 level: info
63 output:
64 stdout:
65 sink: stdout
66 sinks:
67 stdout:
68 type: stdout
69 stdout: {}