Skip to content

Commit

Permalink
Remove openstack_deploy_cleanup from openstack_init target
Browse files Browse the repository at this point in the history
This causes CI to fail when running init on a clean environment

Now we just checkout the openstack-operator repo if it doesn't
already exist
  • Loading branch information
dprince committed Dec 12, 2024
1 parent 7cdfc5f commit a386a1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,8 @@ openstack_wait: openstack ## waits openstack CSV to succeed.

# creates the new initialization resource for our operators
.PHONY: openstack_init
openstack_init: openstack_wait openstack_deploy_cleanup openstack_repo
openstack_init: openstack_wait
test -f ${OPERATOR_BASE_DIR}/openstack-operator/config/samples/operator_v1beta1_openstack.yaml || make openstack_repo
oc create -f ${OPERATOR_BASE_DIR}/openstack-operator/config/samples/operator_v1beta1_openstack.yaml
oc wait openstack/openstack -n ${OPERATOR_NAMESPACE} --for condition=Ready --timeout=${TIMEOUT}

Expand Down

0 comments on commit a386a1d

Please sign in to comment.