Skip to content

Commit

Permalink
Add openstack_init target
Browse files Browse the repository at this point in the history
Recently, a new target called openstack_init has been added to
install_yamls [1]. This target ensures deploynment of all the
openstack operators. The current state of this repository fails with the
following error:

no matches for kind "NetConfig"

when running make deploy_controlplane. This is caused by missing CRDs
in the environment because only openstack-operator is being deployed.

[1] openstack-k8s-operators/install_yamls#963
  • Loading branch information
lpiwowar committed Jan 20, 2025
1 parent f90a385 commit 1dd1698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nested-passthrough/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ deploy_controlplane: ## Deploy OCP cluster using CRC, deploy OSP operators, and
$(MAKE) prepare_controlplane_config && \
sleep 60 && \
echo Deploying RHOSO control plane && \
OPENSTACK_CR=$$(realpath ./out/openstack-deployment.yaml) make -C $(INSTALL_YAMLS_DIR) openstack_deploy && \
OPENSTACK_CR=$$(realpath ./out/openstack-deployment.yaml) make -C $(INSTALL_YAMLS_DIR) openstack_init openstack_deploy && \
echo Waiting for control plane to be ready && \
oc wait openstackcontrolplane openstack --for condition=Ready --timeout=$(TIMEOUT_CTRL) && \
echo "Run eval $$(crc oc-env) to be able to access the OCP cluster using the oc command"
Expand Down

0 comments on commit 1dd1698

Please sign in to comment.