diff --git a/incubating/argo-cd-sync/argocd_sync.py b/incubating/argo-cd-sync/argocd_sync.py index 916ddd964..71a0c14d6 100644 --- a/incubating/argo-cd-sync/argocd_sync.py +++ b/incubating/argo-cd-sync/argocd_sync.py @@ -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" + if status != "HEALTHY": + logging.debug("Status is not HEALTHY. Exiting with error.") sys.exit(1) ####################################################################### diff --git a/incubating/argo-cd-sync/step.yaml b/incubating/argo-cd-sync/step.yaml index f23f361b4..55b2eb1ff 100644 --- a/incubating/argo-cd-sync/step.yaml +++ b/incubating/argo-cd-sync/step.yaml @@ -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" } }