Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix linting #23

Merged
merged 2 commits into from
Sep 17, 2024
Merged
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
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
Loading