blob: 525027349572a73df2f1785ef7a900b9f1989a72 [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 Condonc8b9ae22021-10-07 16:49:54 +010013 tag: v0.8.2
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
27websocketsidecar:
28 enabled: true
29 port: 8120
30
31store: {}
32
33service:
34 type: ClusterIP
35
36resources: {}
37 # We usually recommend not to specify default resources and to leave this as a conscious
38 # choice for the user. This also increases chances charts run on environments with little
39 # resources, such as Minikube. If you do want to specify resources, uncomment the following
40 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
41 # limits:
42 # cpu: 100m
43 # memory: 128Mi
44 # requests:
45 # cpu: 100m
46 # memory: 128Mi
47
48nodeSelector: {}
49
50tolerations: []
51
52affinity: {}
53
54logging:
55 loggers:
56 root:
57 level: info
58 output:
59 stdout:
60 sink: stdout
61 sinks:
62 stdout:
63 type: stdout
64 stdout: {}