Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
alenkacz committed Nov 18, 2020
0 parents commit bfdb8e4
Show file tree
Hide file tree
Showing 6 changed files with 738 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: test
test:
go test ./...

.PHONY: build
build:
go build -race -o ./bin/cm-verifier cmd/ctl/main.go
7 changes: 7 additions & 0 deletions cmd/ctl/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/alenkacz/cert-manager-verifier/pkg/cmd/verify"

func main() {
verify.NewCmd().Execute()
}
11 changes: 11 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/alenkacz/cert-manager-verifier

go 1.15

require (
github.com/spf13/cobra v1.1.1
k8s.io/apimachinery v0.19.4
k8s.io/cli-runtime v0.19.4
k8s.io/client-go v0.19.4
k8s.io/kubectl v0.19.4
)
Loading

0 comments on commit bfdb8e4

Please sign in to comment.