Skip to content

Commit

Permalink
#637: exit with error when not healthy
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Rochette <[email protected]>
  • Loading branch information
lrochette committed Aug 10, 2023
1 parent cb92aa6 commit 1fad663
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions incubating/argo-cd-sync/argocd_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

WAIT_ROLLBACK = True if os.getenv('WAIT_ROLLBACK', "false").lower() == "true" else False
ROLLBACK = True if os.getenv('ROLLBACK', "false").lower() == "true" else False
if WAIT_ROLLBACK: ROLLBACK = True
if WAIT_ROLLBACK: ROLLBACK = True

CF_URL = os.getenv('CF_URL', 'https://g.codefresh.io')
CF_API_KEY = os.getenv('CF_API_KEY')
Expand Down Expand Up @@ -70,7 +70,8 @@ def main():
CF_OUTPUT_URL_VAR = CF_STEP_NAME + '_CF_OUTPUT_URL'
link_to_app = get_link_to_apps_dashboard()
export_variable(CF_OUTPUT_URL_VAR, link_to_app)

if status != "HEALTHY"
sys.exit(1)

#######################################################################

Expand Down
2 changes: 1 addition & 1 deletion incubating/argo-cd-sync/step.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kind: step-type
metadata:
name: argo-cd-sync
version: 1.2.2
version: 1.3.0
isPublic: true
description: Syncs Argo CD apps managed by our GitOps Runtimes
sources:
Expand Down

0 comments on commit 1fad663

Please sign in to comment.