Skip to content

Commit

Permalink
[BUG FIX] 224 fix go get (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
genevieveluyt authored Sep 16, 2019
1 parent eda1e20 commit e60724d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ privileged, ... You get the gist of it and more on that later. Just know:

## Installation

> **Please note `go get kubeaudit` is currently not functional**
>
> We are aware of the issue and are working on a fix. You can still get kubeaudit using these alternate methods:
#### Download a binary

Kubeaudit has official releases that are blessed and stable here:
Expand All @@ -38,8 +34,15 @@ Master will have newer features than the stable releases. If you need a newer
feature not yet included in a release you can do the following to get
kubeaudit:

For go 1.12 and higher:
```sh
GO111MODULE=on go get -v github.com/Shopify/kubeaudit
```

For older versions of go:
```sh
git clone https://github.com/Shopify/kubeaudit.git
cd kubeaudit
make
make install
```
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ require (
k8s.io/client-go v0.0.0-20190508063711-1babf78c8b32
k8s.io/utils v0.0.0-20190308190857-21c4ce38f2a7 // indirect
)

go 1.13

0 comments on commit e60724d

Please sign in to comment.