Skip to content

Commit

Permalink
Downgrading Linter for Memory Issue (#52)
Browse files Browse the repository at this point in the history
Signed-off-by: Ken Sipe <kensipe@gmail.com>
  • Loading branch information
kensipe authored Apr 3, 2020
1 parent 966c85c commit 4f094d8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BUILD_DATE_PATH := github.com/kudobuilder/kuttl/pkg/version.buildDate
DATE_FMT := "%Y-%m-%dT%H:%M:%SZ"
BUILD_DATE := $(shell date -u -d "@$SOURCE_DATE_EPOCH" "+${DATE_FMT}" 2>/dev/null || date -u -r "${SOURCE_DATE_EPOCH}" "+${DATE_FMT}" 2>/dev/null || date -u "+${DATE_FMT}")
LDFLAGS := -X ${GIT_VERSION_PATH}=${GIT_VERSION} -X ${GIT_COMMIT_PATH}=${GIT_COMMIT} -X ${BUILD_DATE_PATH}=${BUILD_DATE}
GOLANGCI_LINT_VER = "1.24.0"
GOLANGCI_LINT_VER = "1.23.8"

export GO111MODULE=on

Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ KUbernetes Test TooL (kuttl)

## Installation

Brew Install
```bash
brew install kuttl-cli
```

Krew Install
```bash
kubectl krew install kuttl
```

Go Install
```bash
cd $(mktemp -d) && go get github.com/kudobuilder/kuttl/cmd/kubectl-kuttl && cd -
```
Expand All @@ -14,3 +25,5 @@ For usage, see
```bash
kubectl kuttl
```

or the documentation: http://kuttl.dev
2 changes: 1 addition & 1 deletion hack/install-golangcilint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -o errexit
set -o nounset
set -o pipefail

GOLANGCILINT_VERSION=${GOLANGCILINT_VERSION:-v1.24.0}
GOLANGCILINT_VERSION=${GOLANGCILINT_VERSION:-v1.23.8}

curl -sSfL "https://raw.githubusercontent.com/golangci/golangci-lint/${GOLANGCILINT_VERSION}/install.sh" | sh -s -- -b "$(go env GOPATH)/bin" "${GOLANGCILINT_VERSION}"

0 comments on commit 4f094d8

Please sign in to comment.