Joey Armstrong | 0747509 | 2023-01-26 10:56:13 -0500 | [diff] [blame] | 1 | # Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [diff] [blame] | 2 | # |
| 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 | |
| 19 | replicaCount: 1 |
| 20 | |
| 21 | global: |
| 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 | |
| 31 | image: |
| 32 | repository: nginx |
| 33 | tag: stable |
| 34 | pullPolicy: IfNotPresent |
| 35 | |
| 36 | voltha_go_controller: |
| 37 | sshPort: 8101 |
| 38 | uiPort: 8181 |
| 39 | ofPort: 6653 |
| 40 | uiProtocol: TCP |
| 41 | |
| 42 | images: |
| 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 | |
| 49 | imagePullSecrets: [] |
| 50 | nameOverride: "" |
| 51 | fullnameOverride: "" |
| 52 | |
| 53 | serviceAccount: |
| 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 | |
| 60 | podSecurityContext: {} |
| 61 | # fsGroup: 2000 |
| 62 | |
| 63 | securityContext: {} |
| 64 | # capabilities: |
| 65 | # drop: |
| 66 | # - ALL |
| 67 | # readOnlyRootFilesystem: true |
| 68 | # runAsNonRoot: true |
| 69 | # runAsUser: 1000 |
| 70 | |
| 71 | service: |
| 72 | type: ClusterIP |
| 73 | port: 80 |
| 74 | |
| 75 | ingress: |
| 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 | |
| 89 | resources: {} |
| 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 | |
| 101 | nodeSelector: {} |
| 102 | |
| 103 | tolerations: [] |
| 104 | |
| 105 | affinity: {} |
Akash Soni | a02e998 | 2022-12-09 10:11:41 +0530 | [diff] [blame] | 106 | |
| 107 | # Define connectivity to required services |
| 108 | services: |
| 109 | kafka: |
| 110 | cluster: |
| 111 | address: kafka:9092 |