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