Skip to content

Commit c8c0072

Browse files
committed
Fix iib loading playbook name
After slimming common down the playbook needs renaming because collections have slightly different naming constraints. Previous error: ❯ ./pattern.sh make load-iib make -f common/Makefile load-iib make[1]: Entering directory '/home/michele/Engineering/cloud-patterns/multicloud-gitops' ERROR! the playbook: rhvp.cluster_utils.iib-ci could not be found make[1]: *** [common/Makefile:117: load-iib] Error 1 make[1]: Leaving directory '/home/michele/Engineering/cloud-patterns/multicloud-gitops' make: *** [Makefile:12: load-iib] Error 2
1 parent 7a17712 commit c8c0072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ secrets-backend-none: ## Edits values files to remove secrets manager + ESO
115115
.PHONY: load-iib
116116
load-iib: ## CI target to install Index Image Bundles
117117
@set -e; if [ x$(INDEX_IMAGES) != x ]; then \
118-
ansible-playbook rhvp.cluster_utils.iib-ci; \
118+
ansible-playbook rhvp.cluster_utils.iib_ci; \
119119
else \
120120
echo "No INDEX_IMAGES defined. Bailing out"; \
121121
exit 1; \

0 commit comments

Comments
 (0)