Skip to content

Commit

Permalink
fix printing, and use release candidate in metabase-test to test
Browse files Browse the repository at this point in the history
  • Loading branch information
atvaccaro committed Jun 22, 2023
1 parent 0a2bac7 commit deceefa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def kdiff(
full_diff += result.stdout
c.update({"kdiff": full_diff})
if outfile:
msg = f"```{full_diff}```" if full_diff else "No kustomize changes found."
msg = f"```{full_diff}```" if full_diff else "No kustomize changes found.\n"
print(f"writing {len(msg)=} to {outfile}", flush=True)
with open(outfile, "w") as f:
f.write(msg)
Expand Down Expand Up @@ -143,7 +143,7 @@ def hdiff(
full_diff += result.stdout
c.update({"hdiff": full_diff})
if outfile:
msg = f"```{full_diff}```" if full_diff else "No kustomize changes found."
msg = f"```{full_diff}```" if full_diff else "No helm changes found.\n"
print(f"writing {len(msg)=} to {outfile}", flush=True)
with open(outfile, "w") as f:
f.write(msg)
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/apps/values/metabase-test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
images:
metabase:
src: metabase/metabase:v0.46.5
src: metabase/metabase:v0.47.0-RC1

workloads:
metabase:
Expand Down

0 comments on commit deceefa

Please sign in to comment.