Skip to content

Commit f9fdd40

Browse files
iliapoloMatthewCane
authored andcommitted
Merge branch '2.x' into allow-custom-chart-name
2 parents b7e8210 + ac7899a commit f9fdd40

9 files changed

+250
-260
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-compiler-dependencies-2.x.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-configuration-2.x.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-dev-dependencies-2.x.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-runtime-dependencies-2.x.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/synth/synth-stdout.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,6 @@ describe('Helm synthesis', () => {
10851085
synthConfig: {
10861086
format: SynthesisFormat.HELM,
10871087
chartVersion: '1.1.1',
1088-
chartName: 'custom-chart-name',
10891088
},
10901089
},
10911090
postSynth: matchSynthSnapshot,
@@ -1134,6 +1133,7 @@ interface SynthCliOptions {
11341133
readonly format?: string;
11351134
readonly chartApiVersion?: string;
11361135
readonly chartVersion?: string;
1136+
readonly chartName?: string;
11371137
}
11381138

11391139
interface SynthOptions extends SynthCliOptions {
@@ -1199,6 +1199,7 @@ app.synth();
11991199
format: options.format,
12001200
chartApiVersion: options.chartApiVersion,
12011201
chartVersion: options.chartVersion,
1202+
chartName: options.chartName,
12021203
});
12031204

12041205
if (options.postSynth) {

0 commit comments

Comments
 (0)