Skip to content

Commit 232bd5c

Browse files
committed
Allow failing rollout step when pushing image
1 parent a76f9b0 commit 232bd5c

6 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/analytics-api-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
docker push $IMAGE_ID:$TAG_NAME
7474
7575
- name: Rollout
76+
continue-on-error: true
7677
shell: bash
7778
run: |
7879
oc rollout restart deployment/${APP_NAME} -n ${OPENSHIFT_REPOSITORY}-${TAG_NAME}

.github/workflows/cron-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
docker push $IMAGE_ID:$TAG_NAME
7373
7474
- name: Rollout
75+
continue-on-error: true
7576
shell: bash
7677
run: |
7778
oc rollout restart deployment/${APP_NAME} -n ${OPENSHIFT_REPOSITORY}-${TAG_NAME}

.github/workflows/dagster-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
docker push $IMAGE_ID:$TAG_NAME
7474
7575
- name: Rollout
76+
continue-on-error: true
7677
shell: bash
7778
run: |
7879
oc rollout restart deployment/${DEPLOYMENT_NAME} -n ${OPENSHIFT_REPOSITORY}-${TAG_NAME}

.github/workflows/engagement-api-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
docker push $IMAGE_ID:$TAG_NAME
7878
7979
- name: Rollout
80+
continue-on-error: true
8081
shell: bash
8182
run: |
8283
oc rollout restart deployment/${APP_NAME} -n ${OPENSHIFT_REPOSITORY}-${TAG_NAME}

.github/workflows/engagement-web-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
docker push $IMAGE_ID:$TAG_NAME
9090
9191
- name: Rollout
92+
continue-on-error: true
9293
shell: bash
9394
run: |
9495
# Restart the deployment to apply the new image and wait for it to complete

.github/workflows/notify-api-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ jobs:
7171
docker push $IMAGE_ID:$TAG_NAME
7272
7373
- name: Rollout
74+
continue-on-error: true
7475
shell: bash
7576
run: |
7677
oc rollout restart deployment/${APP_NAME} -n ${OPENSHIFT_REPOSITORY}-${TAG_NAME}

0 commit comments

Comments
 (0)