Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

fix for new CRI + namespaces #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
30 changes: 19 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,41 @@ module github.com/criticalstack/swoll
go 1.13

require (
github.com/containerd/containerd v1.5.2
github.com/fatih/color v1.9.0
github.com/gizak/termui/v3 v3.1.0
github.com/go-bindata/go-bindata v3.1.2+incompatible
github.com/go-echarts/go-echarts v1.0.0
github.com/go-logr/logr v0.1.0
github.com/go-logr/logr v0.4.0
github.com/go-logr/zapr v0.4.0 // indirect
github.com/go-redis/redis v6.15.6+incompatible
github.com/golangci/golangci-lint v1.32.0
github.com/google/uuid v1.1.2
github.com/google/uuid v1.2.0
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.4
github.com/gorilla/websocket v1.4.2
github.com/iovisor/gobpf v0.0.0-20191219090757-e72091e3c5e6
github.com/pkg/errors v0.9.1
github.com/prometheus/alertmanager v0.21.0
github.com/prometheus/client_golang v1.6.0
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/common v0.10.0
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/sirupsen/logrus v1.7.0
github.com/spf13/cobra v1.1.1
github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634
google.golang.org/grpc v1.26.0
k8s.io/api v0.18.4
k8s.io/apimachinery v0.18.10
k8s.io/client-go v0.18.4
k8s.io/cri-api v0.0.0-20190828121515-24ae4d4e8b03
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
go.uber.org/atomic v1.8.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.17.0 // indirect
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007
golang.org/x/tools v0.1.3 // indirect
google.golang.org/grpc v1.33.2
honnef.co/go/tools v0.2.0 // indirect
k8s.io/api v0.20.6
k8s.io/apimachinery v0.20.6
k8s.io/client-go v0.20.6
k8s.io/cri-api v0.20.6
sigs.k8s.io/controller-runtime v0.6.1
sigs.k8s.io/yaml v1.2.0

Expand Down
Loading