From 7896e56df5e348eb75be2b9e4a740f19492e45a6 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Fri, 3 Feb 2023 14:44:34 +0100 Subject: [PATCH] Update daily.yaml Signed-off-by: Kjeld Schouten-Lebbing --- .github/workflows/daily.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index 70f407bc305..85776711c54 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -110,6 +110,16 @@ jobs: prefix="https://quay.com/" elif echo ${container} | grep 'tccr'; then prefix="https://github.com/truecharts/containers/tree/master/mirror/" + elif echo ${container} | grep 'lscr'; then + prefix="https://lscr.io/" + elif echo ${container} | grep 'gcr'; then + prefix="https://gcr.io/" + elif echo ${container} | grep 'azurecr'; then + prefix="https://azurecr.io/" + elif echo ${container} | grep 'ecr'; then + prefix="https://public.ecr.aws/" + elif echo ${container} | grep 'ocir'; then + prefix="https://ocir.io/" fi container="${prefix}${container}" go-yq -i '.sources += env(container) | .sources |= unique' "${chart}/Chart.yaml" fi