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

Authentikos: Refactor Token/Secret creators to interfaces. #3036

Closed
wants to merge 7 commits into from
Closed
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
1 change: 1 addition & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,5 @@ _go_image_repos()

load("@//:repos.bzl", "go_repositories")

# gazelle:repository_macro repos.bzl%go_repositories
go_repositories()
2 changes: 1 addition & 1 deletion authentikos/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
authentikos
/authentikos
8 changes: 3 additions & 5 deletions authentikos/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ go_library(
importpath = "istio.io/test-infra/authentikos",
visibility = ["//visibility:private"],
deps = [
"@com_github_spf13_pflag//:go_default_library",
"@io_k8s_api//core/v1:go_default_library",
"//authentikos/pkg/authentikos:go_default_library",
"//authentikos/pkg/plugins/google:go_default_library",
"@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library",
"@io_k8s_client_go//kubernetes:go_default_library",
"@io_k8s_client_go//kubernetes/typed/core/v1:go_default_library",
"@io_k8s_client_go//plugin/pkg/client/auth:go_default_library",
"@io_k8s_client_go//rest:go_default_library",
"@io_k8s_client_go//tools/clientcmd:go_default_library",
"@org_golang_google_api//option:go_default_library",
"@org_golang_google_api//transport:go_default_library",
"@io_k8s_klog//:go_default_library",
],
)

Expand Down
2 changes: 1 addition & 1 deletion authentikos/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ unit-test:
@go test ./...

.PHONY: integ-test
integ-test:
integ-test: image
@bash ./test/integ-simple.sh

.PHONY: test
Expand Down
Loading