aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl
diff options
context:
space:
mode:
authorPramod <pramod.raghavendra.jayathirth@intel.com>2019-10-04 17:23:19 -0700
committerMarco Platania <platania@research.att.com>2019-10-09 14:40:32 +0000
commit7da06c296697269dd25fe03528c9f12b62206482 (patch)
tree12bab59d0907a48935e5123139cd3b8518305c88 /vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl
parentd614d3d6cc1d40664215f79fc2c2f38af03a9996 (diff)
Add Istio connectivity for Services below
1. Grafana 2. Prometheus 3. Minio (Istio ServiceEntry Added) Issue-ID: ONAPARC-511 Signed-off-by: Pramod <pramod.raghavendra.jayathirth@intel.com> Change-Id: I2cb21c18fde6ecb431fa7f407ce5e13ab31fc910
Diffstat (limited to 'vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl')
-rw-r--r--vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl25
1 files changed, 25 insertions, 0 deletions
diff --git a/vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl b/vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl
new file mode 100644
index 00000000..5516ee45
--- /dev/null
+++ b/vnfs/DAaaS/deploy/istio-config/prometheus-config/prometheus-istio-connectivity/templates/_helpers.tpl
@@ -0,0 +1,25 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "name" -}}
+{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+Create a default fully qualified app name.
+We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
+If release name contains chart name it will be used as a full name.
+*/}}
+{{- define "fullname" -}}
+{{- if .Values.fullnameOverride -}}
+{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- $name := default .Chart.Name .Values.nameOverride -}}
+{{- if contains $name .Release.Name -}}
+{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
+{{- else -}}
+{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+{{- end -}}
+{{- end -}}