Skip to content

Commit

Permalink
Update book with kustomize go link
Browse files Browse the repository at this point in the history
This updates the book with the kustomize go link and adds a brief block
on installing kustomize from that link.
  • Loading branch information
DirectXMan12 committed May 16, 2019
1 parent 6fca9a1 commit f732557
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions docs/book/src/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ This Quick Start guide will cover:

## Installation

Install [kustomize](https://sigs.k8s.io/kustomize).


Install [kubebuilder](https://sigs.k8s.io/kubebuilder):

```bash
Expand All @@ -27,6 +24,16 @@ sudo mv /tmp/kubebuilder/kubebuilder_2.0.0_${os}_${arch} /user/local/kubebuilder
export PATH=$PATH:/usr/local/kubebuilder/bin
```

Install [kustomize](https://sigs.k8s.io/kustomize):

```bash
os=$(go env GOOS)
arch=$(go env GOARCH)

# download kustomize to the kubebuilder assets folder
curl -o /usr/local/kubebuilder/bin/kustomize -sL https://go.kubebuilder.io/dl/latest/${os}/${arch}
```

## Create a Project

Initialize a new project and Go module for your controllers:
Expand Down

0 comments on commit f732557

Please sign in to comment.