Skip to content

Commit

Permalink
Adding client-go auth package. (#3)
Browse files Browse the repository at this point in the history
* Adding client-go auth package.
  • Loading branch information
tanmayja authored Jun 16, 2023
1 parent 2e88d5a commit 1d362ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50
version: v1.52
args: --timeout=5m
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $(LOCALBIN):
mkdir -p $(LOCALBIN)

GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
GOLANGCI_LINT_VERSION ?= v1.50.1
GOLANGCI_LINT_VERSION ?= v1.52.2
ENVTEST_K8S_VERSION = 1.26.1

.PHONY: golanci-lint
Expand Down
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ limitations under the License.

package main

import "github.com/aerospike/aerospike-kubernetes-operator-ctl/cmd"
import (
_ "k8s.io/client-go/plugin/pkg/client/auth"

"github.com/aerospike/aerospike-kubernetes-operator-ctl/cmd"
)

func main() {
cmd.Execute()
Expand Down

0 comments on commit 1d362ac

Please sign in to comment.