Skip to content

Commit

Permalink
Issue 637 - v1.3.0 (#639)
Browse files Browse the repository at this point in the history
* #637: exit with error when not healthy
Signed-off-by: Laurent Rochette <[email protected]>
  • Loading branch information
lrochette authored Aug 14, 2023
1 parent cb92aa6 commit 550a137
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 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,9 @@ 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":
logging.debug("Status is not HEALTHY. Exiting with error.")
sys.exit(1)

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

Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -111,7 +111,7 @@ spec:
},
"IMAGE_TAG": {
"type": "string",
"default": "1.2.2",
"default": "1.3.0",
"description": "OPTIONAL - To overwrite the tag to use"
}
}
Expand Down

0 comments on commit 550a137

Please sign in to comment.