From 3b1cf8d66ad0fe76a5250b2e22cdf02e3d09c3be Mon Sep 17 00:00:00 2001 From: Manfred Riem Date: Tue, 26 Mar 2024 09:40:18 -0500 Subject: [PATCH] Fixes #433 - Fix 'Create a manual job' workflow --- acr/helloworldjob/README.md | 2 +- containerapp/create-manual-job/README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/acr/helloworldjob/README.md b/acr/helloworldjob/README.md index 7ebf5735..0d9c7d34 100644 --- a/acr/helloworldjob/README.md +++ b/acr/helloworldjob/README.md @@ -32,7 +32,7 @@ This example assumes you have previously completed the following examples: To build the JAR file use the following Maven command line: ```shell - mvn package + mvn -ntp package ``` ## Build and push the container image to your Azure Container Registry diff --git a/containerapp/create-manual-job/README.md b/containerapp/create-manual-job/README.md index d6c8f03e..281581f4 100644 --- a/containerapp/create-manual-job/README.md +++ b/containerapp/create-manual-job/README.md @@ -47,6 +47,8 @@ To create the manual job use the command line below. --replica-retry-limit 1 \ --replica-completion-count 1 \ --parallelism 1 \ + --registry-identity system \ + --registry-server $ACR_NAME.azurecr.io \ --image $ACR_NAME.azurecr.io/$ACR_HELLOWORLDJOB_IMAGE ```