mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add configmap for xds (#18264)
Signed-off-by: Shunki Fujiwara <shunki-fujiwara@freee.co.jp>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
baa2f7f74f
commit
eac3da8794
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Envoy is an open source edge and service proxy, designed for cloud-native applications.
|
||||
name: envoy
|
||||
version: 1.8.0
|
||||
version: 1.8.1
|
||||
appVersion: 1.11.2
|
||||
keywords:
|
||||
- envoy
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ template "envoy.fullname" . }}-xds
|
||||
labels:
|
||||
app: {{ template "envoy.name" . }}
|
||||
chart: {{ template "envoy.chart" . }}
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
data:
|
||||
{{- range $filename, $content := .Values.xds }}
|
||||
{{ tpl $filename $ }}: |-
|
||||
{{ $valueWithDefault := default "" $content -}}
|
||||
{{ tpl $valueWithDefault $ | indent 4 }}
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user