Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[incubator/raw] fix missing newline after yaml document separator (#1…
Browse files Browse the repository at this point in the history
…3694)

* [incubator/raw] fix missing newline after yaml document separator

Signed-off-by: William Villeneuve <ciiqr@users.noreply.github.com>

* Bumped incubator/raw version to 0.2.1

Signed-off-by: William Villeneuve <ciiqr@users.noreply.github.com>
  • Loading branch information
ciiqr authored and k8s-ci-robot committed May 13, 2019
1 parent 72fdb25 commit 11cd5ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions incubator/raw/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: raw
home: https://github.com/helm/charts/blob/master/incubator/raw
version: 0.2.0
appVersion: 0.2.0
version: 0.2.1
appVersion: 0.2.1
description: A place for all the Kubernetes resources which don't already have a home.
maintainers:
- name: josdotso
Expand Down
4 changes: 2 additions & 2 deletions incubator/raw/templates/resources.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{{- $template := fromYaml (include "raw.resource" .) -}}
{{- range .Values.resources }}
---
{{- toYaml (merge . $template) -}}
{{ toYaml (merge . $template) -}}
{{- end }}
{{- range $i, $t := .Values.templates }}
---
{{- toYaml (merge (tpl $t $ | fromYaml) $template) -}}
{{ toYaml (merge (tpl $t $ | fromYaml) $template) -}}
{{- end }}

0 comments on commit 11cd5ca

Please sign in to comment.