Skip to content

Commit 9fca209

Browse files
committed
Fix helm deno push test: it was failing because chartmuseum don't host images on docker hub anymore
1 parent 18321c0 commit 9fca209

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

e2e-tests/e2e.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,9 @@ async function startHelmRegistry() {
389389
"--detach",
390390
`--publish=${port}:8080`,
391391
"--env=STORAGE=local",
392-
"--env=STORAGE_LOCAL_ROOTDIR=/home/chartmuseum/charts",
393-
"chartmuseum/chartmuseum:v0.12.0@sha256:38c5ec3b30046d7a02a55b4c8bd8a0cd279538c2e36090973798a858e900b18e",
392+
"--env=STORAGE_LOCAL_ROOTDIR=/charts",
393+
"--user=0", // To have write permission to /charts
394+
"ghcr.io/helm/chartmuseum:v0.13.1@sha256:79350ffbf8b0c205cf8b45988de899db594618b24fefd17cdbcdbbc8eb795d72",
394395
])
395396

396397
if (!status.success) {
@@ -604,7 +605,7 @@ Deno.test({
604605

605606
Deno.test({
606607
name:
607-
"should throw error if`--deno-bundle require` have been passed but deno-bundle.js do not exist",
608+
"should throw error if `--deno-bundle require` have been passed but deno-bundle.js do not exist",
608609
async fn() {
609610
const chartPath = path.join(chartsBin, "one-service")
610611

0 commit comments

Comments
 (0)