Skip to content

Commit

Permalink
Merge pull request #23 from nirmata/fix-ko
Browse files Browse the repository at this point in the history
fix linting
  • Loading branch information
VedRatan authored Sep 17, 2024
2 parents 42e1d36 + c0b9975 commit 11e9bba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ KO_LOCAL_REGISTRY := ko.local/kube-bench-adapter
KO_REGISTRY ?= github.com/nirmata/kube-bench-adapter
PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x,linux/ppc64le
LOCAL_PLATFORM ?= linux/arm64
IMAGE_TAG ?= $(shell git describe)
IMAGE_TAG ?= $(shell git describe --always --tags)

all: build-local

Expand Down
4 changes: 2 additions & 2 deletions pkg/kubebench/kubebench.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ func RunJob(params *params.KubeBenchArgs) (*kubebench.OverallControls, error) {
requiredParam := make([]string, 2)
if params.Registry != "aquasec" && params.RegistryUsername == "" {
requiredParam = append(requiredParam, "registry-username")
}
}

if params.Registry != "aquasec" && params.RegistryPassword == "" {
requiredParam = append(requiredParam, "registry-password")
}
Expand Down

0 comments on commit 11e9bba

Please sign in to comment.