This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch release-2.5.x in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/release-2.5.x by this push: new cc72b6342 Update installation.adoc cc72b6342 is described below commit cc72b634251beae98cb323fba7f9252f9b3f9209 Author: cfitzw <20694057+cfi...@users.noreply.github.com> AuthorDate: Wed Oct 30 12:20:29 2024 -0500 Update installation.adoc - Add namespace to helm install, as the rest of the documented commands are assuming it to be there. - Fix yaml spacing for the IntegrationPlatform - Add spec.build.registry.organization to the IntegrationPlatform yaml --- docs/modules/ROOT/pages/installation/installation.adoc | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/modules/ROOT/pages/installation/installation.adoc b/docs/modules/ROOT/pages/installation/installation.adoc index ca9e33d78..2fe46b8f0 100644 --- a/docs/modules/ROOT/pages/installation/installation.adoc +++ b/docs/modules/ROOT/pages/installation/installation.adoc @@ -26,7 +26,7 @@ Camel K is available in Helm Hub: ``` $ helm repo add camel-k https://apache.github.io/camel-k/charts/ -$ helm install camel-k camel-k/camel-k +$ helm install camel-k camel-k/camel-k -n camel-k ``` More instructions on the https://hub.helm.sh/charts/camel-k/camel-k[Camel K Helm] page. @@ -64,21 +64,22 @@ The majority of configuration required to tune the operator are stored in an `In Camel K requires a container registry which is used to store the images built for your applications. Certain clusters may use their internal container registry (ie, Openshift, Minikube or https://github.com/kubernetes/enhancements/tree/master/keps/sig-cluster-lifecycle/generic/1755-communicating-a-local-registry[KEP-1755 compatible] clusters). -You need to create an `IntegrationPlatform` with the following configuration in the namespace where the operator is running: +**IMPORTANT:** You need to create an `IntegrationPlatform` with the following configuration in the namespace where the operator is running: ```yaml apiVersion: camel.apache.org/v1 kind: IntegrationPlatform metadata: -labels: + labels: app: camel-k -name: camel-k -namespace: camel-k + name: camel-k + namespace: camel-k spec: -build: + build: registry: - address: registry.io - insecure: true + address: registry.io + organization: camel-k + insecure: true ``` The minimum configuration required is the container registry. Just change the example value with the configuration available for your installation and write as a file as `itp.yaml`.