Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added documentation about installing Camel K on Kind #2293

Merged
merged 1 commit into from
May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.