File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -193,16 +193,16 @@ validate-prereq: ## verify pre-requisites
193
193
.PHONY : argo-healthcheck
194
194
argo-healthcheck : # # Checks if all argo applications are synced
195
195
@echo " Checking argo applications"
196
- $(eval APPS := $(shell oc get applications -A -o jsonpath='{range .items[* ]}{@.metadata.namespace}{","}{@.metadata.name}{"\n"}{end}') )
196
+ $(eval APPS := $(shell oc get applications.argoproj.io -A -o jsonpath='{range .items[* ]}{@.metadata.namespace}{","}{@.metadata.name}{"\n"}{end}') )
197
197
@NOTOK=0; \
198
198
for i in $( APPS) ; do\
199
199
n=` echo " $$ {i}" | cut -f1 -d,` ; \
200
200
a=` echo " $$ {i}" | cut -f2 -d,` ; \
201
- STATUS=` oc get -n " $$ {n}" application /" $$ {a}" -o jsonpath=' {.status.sync.status}' ` ; \
201
+ STATUS=` oc get -n " $$ {n}" applications.argoproj.io /" $$ {a}" -o jsonpath=' {.status.sync.status}' ` ; \
202
202
if [[ $$ STATUS != " Synced" ]]; then\
203
203
NOTOK=$$(( $${NOTOK} + 1 ) ); \
204
204
fi ; \
205
- HEALTH=` oc get -n " $$ {n}" application /" $$ {a}" -o jsonpath=' {.status.health.status}' ` ; \
205
+ HEALTH=` oc get -n " $$ {n}" applications.argoproj.io /" $$ {a}" -o jsonpath=' {.status.health.status}' ` ; \
206
206
if [[ $$ HEALTH != " Healthy" ]]; then\
207
207
NOTOK=$$(( $${NOTOK} + 1 ) ); \
208
208
fi ; \
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ podman run -it --rm --pull=newer \
85
85
-e EXTRA_HELM_OPTS \
86
86
-e EXTRA_PLAYBOOK_OPTS \
87
87
-e TARGET_ORIGIN \
88
+ -e TARGET_SITE \
88
89
-e NAME \
89
90
-e TOKEN_SECRET \
90
91
-e TOKEN_NAMESPACE \
You can’t perform that action at this time.
0 commit comments