Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Fix typo within makisu directory #110

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions makisu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ makes it a perfect tool to be part of a Knative build.

## Create the registry configuration

makisu uses a [registry configuration](https://github.com/uber/makisu/blob/master/docs/REGISTRY.md) which should be stored as a secret in Kubernetes. Adjust the `registry.yaml` in this diretroy to contain your user and password for the Docker hub (or configure a different [registry](https://github.com/uber/makisu/blob/master/docs/REGISTRY.md#examples)). Keep in mind that the secret must exist in the same namespace as the build runs.:
makisu uses a [registry configuration](https://github.com/uber/makisu/blob/master/docs/REGISTRY.md) which should be stored as a secret in Kubernetes. Adjust the `registry.yaml` in this directory to contain your user and password for the Docker hub (or configure a different [registry](https://github.com/uber/makisu/blob/master/docs/REGISTRY.md#examples)). Keep in mind that the secret must exist in the same namespace as the build runs.:

```bash
kubectl --namespace default create secret generic docker-registry-config --from-file=./registry.yaml
Expand All @@ -32,7 +32,7 @@ kubectl apply -f https://raw.githubusercontent.com/knative/build-templates/maste
`/workspace`)
* **PUSH_REGISTRY**: The Registry to push the image to (_default:_
`index.docker.io`)
* **REGISTRY_SECRET**: Secret containing information about the used regsitry (_default:_
* **REGISTRY_SECRET**: Secret containing information about the used registry (_default:_
`docker-registry-config`)

## Usage
Expand Down
2 changes: 1 addition & 1 deletion makisu/makisu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
description: Registry to push image to.
default: index.docker.io
- name: REGISTRY_SECRET
description: Secret containing information about the used regsitry.
description: Secret containing information about the used registry.
default: docker-registry-config
steps:
- name: build-and-push
Expand Down