We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 92ce4e5 + a465606 commit b837b4dCopy full SHA for b837b4d
src/outputs/application-manifest.ts
@@ -82,7 +82,7 @@ const getApplicationManifest = (
82
releaseName: string,
83
applicationSpec: CNDIApplicationSpec,
84
): [string, string] => {
85
- const valuesObject = applicationSpec?.values || {};
+ const values = getYAMLString(applicationSpec?.values || {});
86
const specSourcePath = applicationSpec.path;
87
const specSourceChart = applicationSpec.chart;
88
const destinationNamespace = applicationSpec?.destinationNamespace;
@@ -157,7 +157,7 @@ const getApplicationManifest = (
157
targetRevision,
158
helm: {
159
version: DEFAULT_HELM_VERSION,
160
- valuesObject,
+ values,
161
},
162
163
destination: {
0 commit comments