mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
e08d184984
These dependencies are pulled in by k8s.io/kubernetes with version v0.0.0. It is therefore required to use 'replace' in go.mod to select a compatible version of the additional k8s.io packages. Dependabot does not seem to update packages listed in 'replace', only under 'require'. That means, the version updates done by Dependabot do not have any effect, as the contents is replaced with a different version anyway. Ignoring these packages prevents the creation of non-functional PRs. Signed-off-by: Niels de Vos <ndevos@redhat.com>
77 lines
3.4 KiB
Modula-2
77 lines
3.4 KiB
Modula-2
module github.com/ceph/ceph-csi
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/aws/aws-sdk-go v1.38.63
|
|
github.com/ceph/go-ceph v0.11.0
|
|
github.com/container-storage-interface/spec v1.5.0
|
|
github.com/csi-addons/replication-lib-utils v0.2.0
|
|
github.com/csi-addons/spec v0.1.0
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/hashicorp/vault/api v1.0.5-0.20200902155336-f9d5ce5a171a
|
|
github.com/kubernetes-csi/csi-lib-utils v0.10.0
|
|
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0
|
|
github.com/libopenstorage/secrets v0.0.0-20210709082113-dde442ea20ec
|
|
github.com/onsi/ginkgo v1.16.4
|
|
github.com/onsi/gomega v1.13.0
|
|
github.com/pborman/uuid v1.2.1
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/stretchr/testify v1.7.0
|
|
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
|
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22
|
|
google.golang.org/grpc v1.38.0
|
|
k8s.io/api v0.22.0
|
|
k8s.io/apimachinery v0.22.0
|
|
k8s.io/client-go v12.0.0+incompatible
|
|
k8s.io/cloud-provider v1.22.0
|
|
k8s.io/klog/v2 v2.9.0
|
|
k8s.io/kubernetes v1.22.0
|
|
k8s.io/mount-utils v0.22.0
|
|
k8s.io/utils v0.0.0-20210707171843-4b05e18ac7d9
|
|
sigs.k8s.io/controller-runtime v0.9.2
|
|
)
|
|
|
|
replace (
|
|
code.cloudfoundry.org/gofileutils => github.com/cloudfoundry/gofileutils v0.0.0-20170111115228-4d0c80011a0f
|
|
github.com/golang/protobuf => github.com/golang/protobuf v1.4.3
|
|
github.com/hashicorp/vault/api => github.com/hashicorp/vault/api v1.0.5-0.20200902155336-f9d5ce5a171a
|
|
github.com/hashicorp/vault/sdk => github.com/hashicorp/vault/sdk v0.1.14-0.20201116234512-b4d4137dfe8b
|
|
github.com/portworx/sched-ops => github.com/portworx/sched-ops v0.20.4-openstorage-rc3
|
|
gomodules.xyz/jsonpatch/v2 => github.com/gomodules/jsonpatch/v2 v2.2.0
|
|
google.golang.org/grpc => google.golang.org/grpc v1.35.0
|
|
//
|
|
// k8s.io/kubernetes depends on these k8s.io packages, but unversioned
|
|
//
|
|
k8s.io/api => k8s.io/api v0.22.0
|
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.22.0
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.22.0
|
|
k8s.io/apiserver => k8s.io/apiserver v0.22.0
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.22.0
|
|
k8s.io/client-go => k8s.io/client-go v0.22.0
|
|
k8s.io/cloud-provider => k8s.io/cloud-provider v0.22.0
|
|
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.22.0
|
|
k8s.io/code-generator => k8s.io/code-generator v0.22.0
|
|
k8s.io/component-base => k8s.io/component-base v0.22.0
|
|
k8s.io/component-helpers => k8s.io/component-helpers v0.22.0
|
|
k8s.io/controller-manager => k8s.io/controller-manager v0.22.0
|
|
k8s.io/cri-api => k8s.io/cri-api v0.22.0
|
|
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.22.0
|
|
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.22.0
|
|
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.22.0
|
|
k8s.io/kube-proxy => k8s.io/kube-proxy v0.22.0
|
|
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.22.0
|
|
k8s.io/kubectl => k8s.io/kubectl v0.22.0
|
|
k8s.io/kubelet => k8s.io/kubelet v0.22.0
|
|
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.22.0
|
|
k8s.io/metrics => k8s.io/metrics v0.22.0
|
|
k8s.io/mount-utils => k8s.io/mount-utils v0.22.0
|
|
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.22.0
|
|
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.22.0
|
|
)
|
|
|
|
// This tag doesn't exist, but is imported by github.com/portworx/sched-ops.
|
|
exclude github.com/kubernetes-incubator/external-storage v0.20.4-openstorage-rc2
|