The release notes of Quarkus 3 state
This release includes additional features like the quarkus deploy command that enables the deployment of Quarkus applications to platforms like Kubernetes, Knative, and OpenShift without requiring changes to the project dependencies or configuration
But a
quarkus deploy kubernetes # or minikube
does not the same as
./mvnw clean package -Dquarkus.kubernetes.deploy=true
I used the default REST sample from the generator, added Docker and Kubernetes extension, set the environment, added image-pull-policy=ifNotPresent to application.properties and tried to deploy into a running Minikube on Docker Desktop on Windows 11.
In the 1st case, it would not build anything docker related and start a pod, in the 2nd case everything runs fine.
How should the quarkus command be used?