blob: df1613b10373ce5aa84b79f9d981a4efb60ad1ed [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001# Copyright 2019-present Open Networking Foundation
2#
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07003# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquillo223db002020-06-05 10:28:22 -07004
5images:
6 tags:
Hyunsun Moon1f868cf2021-05-08 18:26:44 -07007 initCU: "registry.aetherproject.org/accelleran/pod-init:1.0.0"
8 nats: "registry.aetherproject.org/accelleran/accelleran-cu-nats:v1.0.0"
9 redis: "registry.aetherproject.org/accelleran/accelleran-cu-redis:v1.0.0"
10 redisClient: "docker.io/redis:5.0.6-alpine3.10"
11 ric: "registry.aetherproject.org/accelleran/accelleran-cu-ric:v1.0.0"
12 ricWeb: "registry.aetherproject.org/accelleran/accelleran-cu-ricweb:v1.0.0"
13 depCheck: "quay.io/stackanetes/kubernetes-entrypoint:v0.3.1"
Jeremy Ronquillo223db002020-06-05 10:28:22 -070014 pullPolicy: IfNotPresent
Hyunsun Moon1f868cf2021-05-08 18:26:44 -070015 pullSecrets:
16 - name: aether.registry
Jeremy Ronquillo223db002020-06-05 10:28:22 -070017
18nodeSelectors:
19 enabled: false
20 accelleranCBRSCommon:
21 label: accelleran-cbrs-common
22 value: enabled
23
24resources:
25 enabled: true
26 accelleranCBRSCommon:
27 requests:
28 cpu: 3
29 memory: 1Gi
30 limits:
31 cpu: 3
32 memory: 1Gi
33
34config:
35 nats:
36 url: accelleran-cbrs-nats:4222
37 ip: 119.0.0.30 # Node IP address of nats -- for accessing through NodePort
38 ports:
39 natsPort:
40 port: 4222
41 nodePort: 31000
42 protocol: TCP
43 clusterPort:
44 port: 6222
45 nodePort: 31001
46 protocol: TCP
47 consolePort:
48 port: 8222
49 nodePort: 31002
50 protocol: TCP
51 redis:
52 hostName: accelleran-cbrs-redis
53 ports:
54 redisPort:
55 port: 6379
56 nodePort: 32000
57 protocol: TCP
Hyunsun Moonbb68dfc2020-10-08 16:35:27 -070058 persistence:
59 enabled: true
60 storageClass: "fast-disks"
61 accessMode: ReadWriteOnce
62 size: 1Gi
Jeremy Ronquillo223db002020-06-05 10:28:22 -070063 ric:
64 zlogConf:
65 bufferMin: 64K
66 bufferMax: 64K
67 instanceId: ONFRIC001
68 ricWeb:
69 ports:
70 ricWebPort:
71 port: 8080
72 nodePort: 30000
73 protocol: TCP