jolly-motorcycle-47330
05/12/2025, 9:32 AMyaml
kind: Module
description: Base Chart
name: base-chart
type: helm
skipDeploy: true
allowPublish: false
spec:
values: ...
---
kind: Module
name: chalco
type: helm
base: base-chart
values: ...
(We didn't find a migration path to apply the skipDeploy: true
field also.)
Could you please give us some ideas how we can do this in version 0.13 / 0.14?big-spring-14945
05/21/2025, 12:30 PM$merge
template syntax instead:
kind: Deploy
name: base-chart
type: exec
variables:
commonValues:
foo: bar
baz: false
---
kind: Deploy
name: ehalco
type: helm
values:
$merge: ${actions.deploy.base-chart.vars.commonValues}
specific:
values: are-here