blob: cdd0b3f47a7861c9799e83f3829fdea342792a3c [file] [log] [blame]
Sean Condond7d18342021-10-11 14:25:27 +01001# 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
Sean Condond7d18342021-10-11 14:25:27 +01004
5# Default values for aether-roc-websocket.
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-websocket
Sean Condonc7d89142021-10-21 11:18:08 +010013 tag: v0.8.7
Sean Condond7d18342021-10-11 14:25:27 +010014 pullPolicy: IfNotPresent
15 pullSecrets: []
16
17imagePullSecrets: []
18nameOverride: ""
19fullnameOverride: "aether-roc-websocket"
20
21# Enable by giving a value like http://k3u-keycloak:80/auth/realms/master
22# make sure this is reachable at http://k3u-keycloak:80/auth/realms/master/.well-known/openid-configuration
23openidc:
24 issuer:
25
26port: 8120
27
28service:
29 type: ClusterIP
30
31resources: {}
32 # We usually recommend not to specify default resources and to leave this as a conscious
33 # choice for the user. This also increases chances charts run on environments with little
34 # resources, such as Minikube. If you do want to specify resources, uncomment the following
35 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
36 # limits:
37 # cpu: 100m
38 # memory: 128Mi
39 # requests:
40 # cpu: 100m
41 # memory: 128Mi
42
43nodeSelector: {}
44
45tolerations: []
46
47affinity: {}
48
49logging:
50 loggers:
51 root:
52 level: info
53 output:
54 stdout:
55 sink: stdout
56 sinks:
57 stdout:
58 type: stdout
59 stdout: {}