mirror of https://git.rancher.io/charts
15 lines
376 B
YAML
15 lines
376 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Chart.Name }}-manifest
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
crd-manifest.yaml: |
|
|
{{- $currentScope := . -}}
|
|
{{- $crds := (.Files.Glob "crd-manifest/**.yaml") -}}
|
|
{{- range $path, $_ := $crds -}}
|
|
{{- with $currentScope -}}
|
|
{{ .Files.Get $path | nindent 4 }}
|
|
---
|
|
{{- end -}}{{- end -}}
|