Skip to content

Commit

Permalink
feat(manifests/helmfile): add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thameezb committed May 24, 2023
1 parent 8dbd592 commit 1ac6324
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ public BakeRecipe buildBakeRecipe(
if ("git/repo".equals(artifactType)) {
env.downloadArtifactTarballAndExtract(artifactDownloader, helmfileTemplateArtifact);

log.info("helmfileFilePath: '{}'", request.getHelmfileFilePath());

// If there's no helmfile path specified, assume it lives in the root of
// the git/repo artifact.
helmfileFilePath =
Expand Down Expand Up @@ -128,7 +126,7 @@ public BakeRecipe buildBakeRecipe(
command.add("--set");
command.add(String.join(",", overrideList));
}
//

if (!valuePaths.isEmpty()) {
command.add("--values");
command.add(valuePaths.stream().map(Path::toString).collect(Collectors.joining(",")));
Expand Down

0 comments on commit 1ac6324

Please sign in to comment.