22 lines
654 B
YAML
22 lines
654 B
YAML
# Copyright (c) YugaByte, Inc.
|
|
{{- if .Values.yugaware.universe_boot_script }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Release.Name }}-universe-boot-script
|
|
labels:
|
|
app: {{ template "yugaware.name" . }}
|
|
chart: {{ template "yugaware.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Values.helm2Legacy | ternary "Tiller" (.Release.Service | quote) }}
|
|
data:
|
|
universe_boot_script: |
|
|
{{- if hasPrefix "#!" .Values.yugaware.universe_boot_script }}
|
|
{{ tpl .Values.yugaware.universe_boot_script . | indent 4 }}
|
|
{{- else }}
|
|
{{ tpl (.Files.Get .Values.yugaware.universe_boot_script) . | indent 4 }}
|
|
{{- end }}
|
|
|
|
{{- end }}
|