Skip to content

Commit b774783

Browse files
authored
Fix replica-retry-limit inconsistencies
1 parent faa8aad commit b774783

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/tutorial-ci-cd-runners-jobs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ You can now create a job that uses to use the container image. In this section,
392392
az containerapp job create -n "$JOB_NAME" -g "$RESOURCE_GROUP" --environment "$ENVIRONMENT" \
393393
--trigger-type Event \
394394
--replica-timeout 1800 \
395-
--replica-retry-limit 1 \
395+
--replica-retry-limit 0 \
396396
--replica-completion-count 1 \
397397
--parallelism 1 \
398398
--image "$CONTAINER_REGISTRY_NAME.azurecr.io/$CONTAINER_IMAGE_NAME" \
@@ -711,7 +711,7 @@ You can run a manual job to register an offline placeholder agent. The job runs
711711
az containerapp job create -n "$PLACEHOLDER_JOB_NAME" -g "$RESOURCE_GROUP" --environment "$ENVIRONMENT" `
712712
--trigger-type Manual `
713713
--replica-timeout 300 `
714-
--replica-retry-limit 1 `
714+
--replica-retry-limit 0 `
715715
--replica-completion-count 1 `
716716
--parallelism 1 `
717717
--image "$CONTAINER_REGISTRY_NAME.azurecr.io/$CONTAINER_IMAGE_NAME" `
@@ -803,7 +803,7 @@ Now that you have a placeholder agent, you can create a self-hosted agent. In th
803803
az containerapp job create -n "$JOB_NAME" -g "$RESOURCE_GROUP" --environment "$ENVIRONMENT" \
804804
--trigger-type Event \
805805
--replica-timeout 1800 \
806-
--replica-retry-limit 1 \
806+
--replica-retry-limit 0 \
807807
--replica-completion-count 1 \
808808
--parallelism 1 \
809809
--image "$CONTAINER_REGISTRY_NAME.azurecr.io/$CONTAINER_IMAGE_NAME" \
@@ -826,7 +826,7 @@ az containerapp job create -n "$JOB_NAME" -g "$RESOURCE_GROUP" --environment "$E
826826
az containerapp job create -n "$JOB_NAME" -g "$RESOURCE_GROUP" --environment "$ENVIRONMENT" `
827827
--trigger-type Event `
828828
--replica-timeout 1800 `
829-
--replica-retry-limit 1 `
829+
--replica-retry-limit 0 `
830830
--replica-completion-count 1 `
831831
--parallelism 1 `
832832
--image "$CONTAINER_REGISTRY_NAME.azurecr.io/$CONTAINER_IMAGE_NAME" `

0 commit comments

Comments
 (0)