Skip to content

Commit 47bcb09

Browse files
twoGiantstekton-robot
authored andcommitted
docs: add ko configuration for local registry
The previous removed entry `kind.local` can be used if the started kind cluster is not using a local registry. If the developer starts a kind cluster with the `tekton_in_kind.sh` plumbing script `ko` must be configured to use the local registry which is `localhost:5000`. The documentation was updated. Signed-off-by: Stanislav Jakuschevskij <[email protected]>
1 parent 9327c88 commit 47bcb09

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

DEVELOPMENT.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ For example:
145145

146146
```shell
147147
# format: ${localhost:port}/{}
148-
export KO_DOCKER_REPO=`localhost:5000/mypipelineimages`
148+
export KO_DOCKER_REPO='localhost:5000/mypipelineimages'
149149
```
150150

151151
1. Optionally, add `$HOME/go/bin` to your system `PATH` so that any tooling installed via `go get` will work properly. For example:
@@ -303,18 +303,25 @@ The recommended minimum development configuration is:
303303
3. Create cluster:
304304
305305
```sh
306-
$ kind create cluster
306+
kind create cluster
307307
```
308308
309309
4. Configure [ko](https://kind.sigs.k8s.io/):
310310
311311
```sh
312-
$ export KO_DOCKER_REPO="localhost:5000"
313-
$ export KIND_CLUSTER_NAME="kind" # only needed if you used a custom name in the previous step
312+
export KO_DOCKER_REPO="kind.local"
313+
export KIND_CLUSTER_NAME="kind" # only needed if you used a custom name in the previous step
314314
```
315315
316316
optional: As a convenience, the [Tekton plumbing project](https://github.com/tektoncd/plumbing) provides a script named ['tekton_in_kind.sh'](https://github.com/tektoncd/plumbing/tree/main/hack#tekton_in_kindsh) that leverages `kind` to create a cluster and install Tekton Pipeline, [Tekton Triggers](https://github.com/tektoncd/triggers) and [Tekton Dashboard](https://github.com/tektoncd/dashboard) components into it.
317317
318+
If you used the ['tekton_in_kind.sh'](https://github.com/tektoncd/plumbing/tree/main/hack#tekton_in_kindsh) plumbing script to deploy your `kind` cluster, you need to tell `ko` to use the local registry as mentioned [here](#configure-environment).
319+
320+
321+
```sh
322+
export KO_DOCKER_REPO="localhost:5000"
323+
```
324+
318325
#### Using MiniKube
319326
320327
- Follow the instructions for [running locally with Minikube](docs/developers/local-setup.md#using-minikube)

0 commit comments

Comments
 (0)