blob: 43a01075c928b558824fb750054b957e24ff5d1d [file] [log] [blame]
Wei-Yu Chen16d59142022-06-08 18:25:01 +08001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
3# SPDX-License-Identifier: Apache-2.0
4
5# Default values for aether-enodebd.
6# This is a YAML-formatted file.
7# Declare variables to be passed into your templates.
8
9replicaCount: 1
10
11image:
12 repository: opennetworking/enodebd
13 tag: 0.2.3
14 pullPolicy: IfNotPresent
15
16imagePullSecrets: []
17nameOverride: ""
18fullnameOverride: "aether-enodebd"
19
20service:
21 enodebd:
22 type: NodePort
23 port: 48080
24 external:
25 nodePort: 31005
26 prometheus:
27 type: NodePort
28 port: 8000
29 external:
30 nodePort: 31006
31
32ports:
33 tr069:
34 containerPort: 48080
35 protocol: TCP
36 prometheus:
37 containerPort: 8000
38 protocol: TCP
39
40autoscaling:
41 enabled: false
42
43podAnnotations:
44 fluentbit.io/parser: enodebd
45 field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":8000,"schema":"HTTP"}]'
46
47resources: {}
48 # We usually recommend not to specify default resources and to leave this as a conscious
49 # choice for the user. This also increases chances charts run on environments with little
50 # resources, such as Minikube. If you do want to specify resources, uncomment the following
51 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
52 # limits:
53 # cpu: 100m
54 # memory: 128Mi
55 # requests:
56 # cpu: 100m
57 # memory: 128Mi
58
59nodeSelector: {}
60
61tolerations: []
62
63affinity: {}
64
65interface: "eth0"