Skip to content

Commit

Permalink
Added documentation about installing Camel K on Kind
Browse files Browse the repository at this point in the history
  • Loading branch information
orpiske committed May 14, 2021
1 parent 2b4ab30 commit 32e2763
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
** xref:installation/gke.adoc[Google Kubernetes Engine (GKE)]
** xref:installation/openshift.adoc[OpenShift]
** xref:installation/iks.adoc[IBM Kubernetes Service (IKS)]
** xref:installation/kind.adoc[Kind]
** xref:installation/registry/registry.adoc[Configuring Registry]
*** xref:installation/registry/digitalocean.adoc[DigitalOcean]
*** xref:installation/registry/dockerhub.adoc[Docker Hub]
Expand Down
1 change: 1 addition & 0 deletions docs/modules/ROOT/pages/installation/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ before installing it. Customized instructions are needed for the following clust
- xref:installation/openshift.adoc[OpenShift]
- xref:installation/iks.adoc[IBM Kubernetes Services (IKS)]
- xref:installation/k3s.adoc[K3s]
- xref:installation/kind.adoc[Kind]

Other cluster types (such as OpenShift clusters) should *not need* prior configuration.

Expand Down
25 changes: 25 additions & 0 deletions docs/modules/ROOT/pages/installation/kind.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[[installation-on-kind]]
= Installing Camel K on Kind

Installing Camel K on Kind, with a public registry, doesn't require any special configuration.


Assuming you have Kind installed, then start by creating a cluster:

```
kind create cluster
```

Create a secret with your registry username and password:

```
kubectl -n default create secret docker-registry external-registry-secret --docker-username my-user --docker-password "password"
```

Install Camel K operator on the cluster in the default namespace:

```
kamel install --olm=false -n default --registry docker.io --organization my-org-or-username --registry-secret external-registry-secret --wait
```

Make sure to replace the `my-org-or-username` with your actual username or organization used to host the images.

0 comments on commit 32e2763

Please sign in to comment.