blob: c4b194c745fc93f7aeb724ee0095df90f5c01872 [file] [log] [blame]
Joey Armstrong07475092023-01-26 10:56:13 -05001# Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors
David Bainbridge2bdd4302020-06-09 17:13:18 -07002#
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{{/* Expand the name of the chart. */}}
15{{- define "name" -}}
16{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
17{{- end -}}
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +010018
David Bainbridge2bdd4302020-06-09 17:13:18 -070019{{/* Create a default fully qualified app name. We truncate at 63 chars because . . . */}}
20{{- define "fullname" -}}
21{{- $name := default .Chart.Name .Values.nameOverride -}}
22{{- $fullname := default (printf "%s-%s" .Release.Name $name) .Values.fullNameOverride -}}
23{{- $fullname | trunc 63 | trimSuffix "-" -}}
24{{- end -}}
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +010025
26{{/* Comma separated list of allowed ONU Vendors */}}
27{{- define "allowed_onu_vendors" -}}
28{{- join "," .Values.allowed_onu_vendors}}
29{{- end -}}