diff --git a/README.md b/README.md index 00ac5f707d..93e9c5e3f7 100644 --- a/README.md +++ b/README.md @@ -32,27 +32,27 @@ Shipwright supports any tool that can build container images in Kubernetes clust ## Try It! -* We assume you already have a Kubernetes cluster (v1.20+). If you don't, you can use [KinD](https://kind.sigs.k8s.io), which you can install by running [`./hack/install-kind.sh`](./hack/install-kind.sh). +- We assume you already have a Kubernetes cluster (v1.20+). If you don't, you can use [KinD](https://kind.sigs.k8s.io), which you can install by running [`./hack/install-kind.sh`](./hack/install-kind.sh). -* We also require a Tekton installation (v0.27+). To install the newest supported version, run: +- We also require a Tekton installation (v0.27+). To install the newest supported version, run: ```bash kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.30.0/release.yaml ``` -* Install the Shipwright deployment. To install the latest version, run: +- Install the Shipwright deployment. To install the latest version, run: ```bash kubectl apply --filename https://github.com/shipwright-io/build/releases/download/v0.8.0/release.yaml ``` -* Install the Shipwright strategies. To install the latest version, run: +- Install the Shipwright strategies. To install the latest version, run: ```bash kubectl apply --filename https://github.com/shipwright-io/build/releases/download/v0.8.0/sample-strategies.yaml ``` -* Generate a secret to access your container registry, such as one on [Docker Hub](https://hub.docker.com/) or [Quay.io](https://quay.io/): +- Generate a secret to access your container registry, such as one on [Docker Hub](https://hub.docker.com/) or [Quay.io](https://quay.io/): ```bash REGISTRY_SERVER=https://index.docker.io/v1/ REGISTRY_USER= REGISTRY_PASSWORD= @@ -63,54 +63,32 @@ Shipwright supports any tool that can build container images in Kubernetes clust --docker-email= ``` -* Create a *Build* object, replacing `` with the registry username your `push-secret` secret have access to: +- Create and submit your *BuildRun* object, replacing `` with the registry username your `push-secret` secret have access to: ```bash - REGISTRY_ORG= - cat <