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

Remove last reference to the operator-sdk module #646

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
3 changes: 1 addition & 2 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"runtime"

// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
sdkVersion "github.com/operator-framework/operator-sdk/version"

"github.com/spf13/pflag"

_ "k8s.io/client-go/plugin/pkg/client/auth"
Expand All @@ -38,7 +38,6 @@ func printVersion(ctx context.Context) {
ctxlog.Info(ctx, fmt.Sprintf("Operator Version: %s", version.Version))
ctxlog.Info(ctx, fmt.Sprintf("Go Version: %s", runtime.Version()))
ctxlog.Info(ctx, fmt.Sprintf("Go OS/Arch: %s/%s", runtime.GOOS, runtime.GOARCH))
ctxlog.Info(ctx, fmt.Sprintf("Version of operator-sdk: %v", sdkVersion.Version))
}

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ go 1.15
require (
github.com/go-git/go-git/v5 v5.2.0
github.com/go-logr/logr v0.2.0
github.com/go-logr/zapr v0.1.1 // indirect
github.com/go-openapi/spec v0.19.6
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gophercloud/gophercloud v0.6.0 // indirect
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1
github.com/operator-framework/operator-sdk v0.18.2
github.com/prometheus/client_golang v1.8.0
github.com/prometheus/client_model v0.2.0
github.com/spf13/pflag v1.0.5
github.com/tektoncd/pipeline v0.20.1
go.uber.org/zap v1.16.0
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11 // indirect
k8s.io/api v0.18.12
k8s.io/apimachinery v0.19.0
k8s.io/client-go v12.0.0+incompatible
Expand Down
Loading