nicolaferraro commented on issue #2690: URL: https://github.com/apache/camel-k/issues/2690#issuecomment-944221654
This part does not seem to be right: ``` # Configure Kamelets kubectl create namespace camel-k kamel install -n camel-k --registry-insecure true --registry localhost:32000/v1 kubectl get all -n camel-k ``` First, you need to pass the `--global` option if you want to install it clusterwide. Then you need to use an accessible registry to let camel k publish images, and I don't think you can use `localhost`, as it means different things depending on where it's used (the `v1` part is also non necessary). Check the installation guide for your specific cluster: https://camel.apache.org/camel-k/latest/installation/installation.html. When Camel K is configured correctly you should be able to do the following: ``` # logged on any namespace (--global flag) kamel init example.yaml kamel run example.yaml --dev ``` That should result in a "Hello World" integration running after some time. There's also a `kamel dump` command that grabs info from the namespace in case of issues. -- 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]
