michaeljmcd commented on issue #3442:
URL: https://github.com/apache/camel-k/issues/3442#issuecomment-1183396396
OK, I think my previous error was an error installing OLM which I worked
around by manually pulling the image first.
With the following sequence:
```
$ export NS=example
$ minikube delete
$ minikube start --driver=podman --container-runtime=containerd
--addons=registry,dashboard
$ podman pull quay.io/operator-framework/olm # I got image pull errors
without manually pulilng the image.
$ operator-sdk olm install
$ kubectl create namespace $NS
$ kamel install --global
$ kubectl config set-context --current --namespace=$NS
$ kamel install --skip-operator-setup -n $NS
$ kamel init Example.java
$ kamel run -n $NS Example.java
```
I get the following events:
```
$ k describe integration example
[...]
Events:
Type Reason Age From
Message
---- ------ ---- ----
-------
Normal IntegrationConditionChanged 48s
camel-k-integration-controller Condition "IntegrationPlatformAvailable" is
"False" for Integration example: example/camel-k
Normal IntegrationPhaseUpdated 48s
camel-k-integration-controller Integration "example" in phase "Waiting For
Platform"
Warning IntegrationError 48s (x3 over 48s)
camel-k-integration-controller Cannot reconcile Integration example: error
during trait customization: unable to find catalog matching version
requirement: runtime=, provider=quarkus
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]