Files
kured/go.mod
Jean-Philippe Evrard 20cbf6112d Bouncing go.mod with latest kubernetes packages
Without this patch, go.mod will lag behind for the kubernetes
packages, as it's not automatically tested by dependabot.

We should bump versions with each new minor release of kured.

This should fix it.
2021-03-22 14:28:17 +01:00

15 lines
304 B
Modula-2

module github.com/weaveworks/kured
go 1.15
require (
github.com/prometheus/client_golang v1.8.0
github.com/prometheus/common v0.15.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.1.3
k8s.io/api v0.20.1
k8s.io/apimachinery v0.20.1
k8s.io/client-go v0.20.1
k8s.io/kubectl v0.20.1
)