Skip to content

Commit b837b4d

Browse files
authored
Merge pull request #972 from polyseam/rm-values-obj
[Bug]:`cndi ow` results in dead `applications` due to `valuesObject`
2 parents 92ce4e5 + a465606 commit b837b4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/outputs/application-manifest.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const getApplicationManifest = (
8282
releaseName: string,
8383
applicationSpec: CNDIApplicationSpec,
8484
): [string, string] => {
85-
const valuesObject = applicationSpec?.values || {};
85+
const values = getYAMLString(applicationSpec?.values || {});
8686
const specSourcePath = applicationSpec.path;
8787
const specSourceChart = applicationSpec.chart;
8888
const destinationNamespace = applicationSpec?.destinationNamespace;
@@ -157,7 +157,7 @@ const getApplicationManifest = (
157157
targetRevision,
158158
helm: {
159159
version: DEFAULT_HELM_VERSION,
160-
valuesObject,
160+
values,
161161
},
162162
},
163163
destination: {

0 commit comments

Comments
 (0)