We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 188d785 commit d7ad9afCopy full SHA for d7ad9af
src/deno/render-chart.ts
@@ -74,7 +74,11 @@ export async function renderDenoChart(
74
const denoResources = JSON.parse(new TextDecoder().decode(output))
75
const templates = denoResources.map(stringifyResource).join("\n---\n")
76
await Deno.writeTextFile(
77
- path.join(templateFolderPath, `rendered-deno-templates.yaml`),
+ path.join(templateFolderPath, `import-rendered-templates.yaml`),
78
+ '{{ .Files.Get "rendered-deno-templates.yaml" }}'
79
+ )
80
+ await Deno.writeTextFile(
81
+ path.join(chartPath, `rendered-deno-templates.yaml`),
82
templates
83
)
84
}
0 commit comments