Skip to content

Commit f7282ee

Browse files
authored
Merge pull request #429 from mbaldessari/common-automatic-update
common automatic update
2 parents 4a57960 + 5ced94b commit f7282ee

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

common/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,16 @@ validate-prereq: ## verify pre-requisites
193193
.PHONY: argo-healthcheck
194194
argo-healthcheck: ## Checks if all argo applications are synced
195195
@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}'))
197197
@NOTOK=0; \
198198
for i in $(APPS); do\
199199
n=`echo "$${i}" | cut -f1 -d,`;\
200200
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}'`;\
202202
if [[ $$STATUS != "Synced" ]]; then\
203203
NOTOK=$$(( $${NOTOK} + 1));\
204204
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}'`;\
206206
if [[ $$HEALTH != "Healthy" ]]; then\
207207
NOTOK=$$(( $${NOTOK} + 1));\
208208
fi;\

common/scripts/pattern-util.sh

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ podman run -it --rm --pull=newer \
8585
-e EXTRA_HELM_OPTS \
8686
-e EXTRA_PLAYBOOK_OPTS \
8787
-e TARGET_ORIGIN \
88+
-e TARGET_SITE \
8889
-e NAME \
8990
-e TOKEN_SECRET \
9091
-e TOKEN_NAMESPACE \

0 commit comments

Comments
 (0)