mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
12 lines
310 B
YAML
12 lines
310 B
YAML
|
|
{{- if .Values.customChainspecContent }}
|
||
|
|
{{- $fullname := include "node.fullname" . }}
|
||
|
|
apiVersion: v1
|
||
|
|
kind: ConfigMap
|
||
|
|
metadata:
|
||
|
|
name: {{ $fullname }}-custom-chainspec
|
||
|
|
labels:
|
||
|
|
{{- include "node.labels" . | nindent 4 }}
|
||
|
|
data:
|
||
|
|
chainspec.json: |
|
||
|
|
{{ .Values.customChainspecContent | indent 4 }}
|
||
|
|
{{- end }}
|