-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added documentation about installing Camel K on Kind
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |