blob: 971cc25224301a71515901df5c0bbe6c16c163d4 [file] [log] [blame]
Scott Bakere3090f02022-05-31 15:51:41 -07001# SPDX-FileCopyrightText: 2022-present Intel Corporation
2# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
3#
4# SPDX-License-Identifier: Apache-2.0
5
Ray Milkeycd9f8d12022-08-09 12:27:09 -07006global:
7 store:
8 consensus:
9 name: ""
10 image:
11 registry: ""
12 tag: ""
13
Scott Bakere3090f02022-05-31 15:51:41 -070014nameOverride: ""
15fullnameOverride: ""
16
17replicaCount: 1
18annotations: {}
19
20image:
21 repository: onosproject/fabric-adapter
SeanCondone9d41ad2022-07-12 19:04:48 +010022 tag: "{{ .Chart.AppVersion }}"
Scott Bakere3090f02022-05-31 15:51:41 -070023 pullPolicy: IfNotPresent
24 pullSecrets: []
25
26resources:
27 requests:
28 cpu: 0.5
29 memory: 512Mi
30
31service:
32 type: ClusterIP
33
34partialUpdateEnabled: true
35secure: true
36
37ports:
38 gnmi:
39 secure: 5150
40 prometheus: 9851
41 diagApi: 8080
42
43kafkaURI: ""
44
45prometheusEnabled: true
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: {}
Ray Milkeycd9f8d12022-08-09 12:27:09 -070064
65store:
66 consensus:
67 enabled: true
68 name: ""
69 image:
70 registry: ""
71 repository: atomix/atomix-raft-storage-node
72 tag: ""
73 pullPolicy: IfNotPresent
74 pullSecrets: []
75 clusters: 1
76 replicas: 1
77 partitions: 1
78 raft: {}
79 persistence:
80 storageClass: ""
81 storageSize: 1Gi