From 634a4e2f30ea20f0fdd3c4aba47302d64b40de20 Mon Sep 17 00:00:00 2001 From: Gerd Oberlechner Date: Thu, 9 Jan 2025 12:35:21 +0100 Subject: [PATCH] add ACRPull to deployment and PR check targets (#1070) Signed-off-by: Gerd Oberlechner --- .github/workflows/services-cd.yml | 4 ++++ .github/workflows/services-pr-check.yml | 4 ++++ Makefile | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/services-cd.yml b/.github/workflows/services-cd.yml index 43bc06308..8b962607a 100644 --- a/.github/workflows/services-cd.yml +++ b/.github/workflows/services-cd.yml @@ -82,6 +82,10 @@ run: | make istio.deploy_pipeline + - name: 'Deploy ACR Pull Configuration' + run: | + make acrpull.deploy_pipeline + - name: 'Deploy Frontend' run: | make frontend.deploy_pipeline diff --git a/.github/workflows/services-pr-check.yml b/.github/workflows/services-pr-check.yml index c5478f459..6711ddb0e 100644 --- a/.github/workflows/services-pr-check.yml +++ b/.github/workflows/services-pr-check.yml @@ -96,6 +96,10 @@ run: | make istio.dry_run + - name: 'Dry Run ACR Pull' + run: | + make acrpull.dry_run + - name: 'Dry Run Metrics' run: | make metrics.dry_run diff --git a/Makefile b/Makefile index 5a31a7540..bb1feabdb 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ services_all = $(join services_svc,services_mgmt) # Pipelines section # This sections is used to reference pipeline runs and should replace # the usage of `svc-deploh.sh` script in the future. -services_svc_pipelines = istio metrics backend frontend cluster-service maestro.server +services_svc_pipelines = istio acrpull metrics backend frontend cluster-service maestro.server services_mgmt_pipelines = hypershiftoperator %.deploy_pipeline: $(eval export dirname=$(subst .,/,$(basename $@)))