Skip to content

Commit

Permalink
chore(doc): minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Sep 5, 2024
1 parent 10f03f2 commit 63ff7fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions docs/modules/ROOT/pages/concepts/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ Camel K is a https://kubernetes.io/docs/concepts/extend-kubernetes/operator/[Kub

A Camel workload is generally represented by a route expressed in any Camel DSL. This is wrapped into one or more custom resource which will manage the lifecycle of the application on the cloud.

image::concepts/integrations.png[Camel workload lifecycle, width=1024]

image::concepts/integrations.png[Camel workload lifecycle, width=640]


The user is responsible to create a single IntegrationPlatform which contains the configuration required to drive the build and publishing process. Then the user creates any Integration custom resource, which is mainly a container for the Camel route and other optional Kubernetes fine tunings.

Expand All @@ -24,7 +26,9 @@ The user is responsible to create a single IntegrationPlatform which contains th

The user can use an alternative approach using the Pipe (Connector) abstraction. With Pipe, he can provide a declarative connector-style approach, connecting an **Event Source** to an **Event Sink**. The source and sink can be any Kubernetes object reference that the operator can transform. The operator will be in charge to transform such a Pipe into an Integration and start the build and deployment process as described above.

image::concepts/pipes.png[Camel connector lifecycle, width=1024]

image::concepts/pipes.png[Camel connector lifecycle, width=640]


**Pipe**: it is used to create the connector binding an event source to an event sink.

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/installation/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ NOTE: a local minikube registry can be enabled via `minikube addons enable regis
kubectl apply -f itp.yaml -n camel-k
```

Wait now for the`IntegrationPlatform` to turn into ready state:
Wait now for the IntegrationPlatform to turn into ready state:

```
$ kubectl wait --for jsonpath='{.status.phase}'=Ready IntegrationPlatform camel-k -n camel-k --timeout 30s
integrationplatform.camel.apache.org/camel-k condition met
```

Your operator is now ready to run some Camel `Integration`.
Your operator is now ready to run some Camel Integration.

NOTE: a production ready xref:installation/registry/registry.adoc[container registry configuration] may require other parameters and secret management.

Expand Down

0 comments on commit 63ff7fa

Please sign in to comment.