blob: 5b338394fac5e3e964b54fe36bcf53f40a51264f [file] [log] [blame]
Joey Armstrong084e4472024-02-10 18:03:13 -05001# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +05302#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Default values for voltha-go-controller.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18
19replicaCount: 1
20
21global:
22 stack_name: voltha
23 log_level: "WARN"
24 voltha_infra_name: "voltha-infra"
25 voltha_infra_namespace: "infra"
26 image_registry: ""
27 image_tag: ~
28 image_org: "voltha/"
29 image_pullPolicy: "IfNotPresent"
30
31image:
32 repository: nginx
33 tag: stable
34 pullPolicy: IfNotPresent
35
36voltha_go_controller:
37 sshPort: 8101
38 uiPort: 8181
39 ofPort: 6653
40 uiProtocol: TCP
41
42images:
43 voltha_go_controller:
44 registry: '{{ .Values.global.image_registry }}'
45 repository: '{{ .Values.global.image_org }}voltha-go-controller'
46 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
47 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'
48
49imagePullSecrets: []
50nameOverride: ""
51fullnameOverride: ""
52
53serviceAccount:
54 # Specifies whether a service account should be created
55 create: true
56 # The name of the service account to use.
57 # If not set and create is true, a name is generated using the fullname template
58 name:
59
60podSecurityContext: {}
61 # fsGroup: 2000
62
63securityContext: {}
64 # capabilities:
65 # drop:
66 # - ALL
67 # readOnlyRootFilesystem: true
68 # runAsNonRoot: true
69 # runAsUser: 1000
70
71service:
72 type: ClusterIP
73 port: 80
74
75ingress:
76 enabled: false
77 annotations: {}
78 # kubernetes.io/ingress.class: nginx
79 # kubernetes.io/tls-acme: "true"
80 hosts:
81 - host: chart-example.local
82 paths: []
83
84 tls: []
85 # - secretName: chart-example-tls
86 # hosts:
87 # - chart-example.local
88
89resources: {}
90 # We usually recommend not to specify default resources and to leave this as a conscious
91 # choice for the user. This also increases chances charts run on environments with little
92 # resources, such as Minikube. If you do want to specify resources, uncomment the following
93 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
94 # limits:
95 # cpu: 100m
96 # memory: 128Mi
97 # requests:
98 # cpu: 100m
99 # memory: 128Mi
100
101nodeSelector: {}
102
103tolerations: []
104
105affinity: {}
Akash Sonia02e9982022-12-09 10:11:41 +0530106
107# Define connectivity to required services
108services:
109 kafka:
110 cluster:
111 address: kafka:9092