This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo.mod
79 lines (76 loc) · 3.78 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module github.com/project-flotta/flotta-device-worker
go 1.16
require (
github.com/Azure/azure-sdk-for-go v65.0.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/apenella/go-ansible v1.1.5
github.com/armon/go-metrics v0.3.10 // indirect
github.com/aws/aws-sdk-go v1.44.37
github.com/blang/semver v3.5.1+incompatible
github.com/chzyer/readline v1.5.0 // indirect
github.com/cncf/xds/go v0.0.0-20211130200136-a8f946100490 // indirect
github.com/containers/podman/v4 v4.2.0-rc1.0.20220711193303-c57b5c9b8316
github.com/coreos/go-systemd/v22 v22.3.2
github.com/digitalocean/godo v1.80.0 // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-openapi/runtime v0.23.1 // indirect
github.com/go-openapi/strfmt v0.21.2
github.com/go-openapi/swag v0.21.1
github.com/godbus/dbus/v5 v5.1.0
github.com/golang/mock v1.6.0
github.com/golang/snappy v0.0.4
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/uuid v1.3.0
github.com/gophercloud/gophercloud v0.24.0 // indirect
github.com/hashicorp/consul/api v1.12.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.0.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hetznercloud/hcloud-go v1.33.2 // indirect
github.com/jaypipes/ghw v0.7.0
github.com/linode/linodego v1.5.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/miekg/dns v1.1.49 // indirect
github.com/onsi/ginkgo/v2 v2.1.4
github.com/onsi/gomega v1.19.0
github.com/opencontainers/runc v1.1.3
github.com/openshift/assisted-installer-agent v1.0.10-0.20211027185717-53b0eacfa147
github.com/pelletier/go-toml v1.9.4
github.com/pkg/errors v0.9.1
github.com/project-flotta/flotta-operator v0.2.1-0.20221006133229-3591f8dd5dda
github.com/prometheus/client_golang v1.12.2
github.com/prometheus/common v0.34.0
github.com/prometheus/prometheus v1.8.2-0.20211217191541-41f1a8125e66
github.com/redhatinsights/yggdrasil v0.0.0-20220323125707-cdde836c519a
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9 // indirect
github.com/seqsense/s3sync v1.8.3-0.20220617225540-7524fc039ded
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.0
github.com/vishvananda/netlink v1.1.1-0.20220115184804-dd687eb2f2d4
golang.org/x/net v0.0.0-20220706163947-c90051bbdb60 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
google.golang.org/genproto v0.0.0-20220524023933-508584e28198 // indirect
google.golang.org/grpc v1.46.2
k8s.io/api v0.24.0
k8s.io/apimachinery v0.24.0
sigs.k8s.io/yaml v1.3.0
)
replace (
github.com/cilium/ebpf => github.com/cilium/ebpf v0.7.0
github.com/containernetworking/cni => github.com/containernetworking/cni v0.8.1
github.com/containers/buildah => github.com/containers/buildah v1.23.1
github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.3-0.20220114050600-8b9d41f48198
k8s.io/apimachinery => k8s.io/apimachinery v0.22.4
k8s.io/client-go => k8s.io/client-go v0.21.0
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65
sigs.k8s.io/cluster-api-provider-aws => github.com/openshift/cluster-api-provider-aws v0.2.1-0.20201022175424-d30c7a274820
sigs.k8s.io/cluster-api-provider-azure => github.com/openshift/cluster-api-provider-azure v0.1.0-alpha.3.0.20201016155852-4090a6970205
)