mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-28 16:06:38 +01:00
* Add statefulset compatibility * Add rbac in doc * replace AvailableReplica by ReadyReplica * Replace if to switch
58 lines
2.4 KiB
Modula-2
58 lines
2.4 KiB
Modula-2
module github.com/acouvreur/traefik-ondemand-service
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.5.0 // indirect
|
|
github.com/containerd/containerd v1.5.5 // indirect
|
|
github.com/docker/docker v20.10.8+incompatible
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/stretchr/testify v1.7.0
|
|
golang.org/x/net v0.0.0-20210924151903-3ad01bbaa167 // indirect
|
|
golang.org/x/sys v0.0.0-20210927052749-1cf2251ac284 // indirect
|
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
|
|
google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0 // indirect
|
|
gopkg.in/dc0d/tinykv.v4 v4.0.1
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/apimachinery v0.22.3
|
|
k8s.io/client-go v0.22.3
|
|
)
|
|
|
|
require k8s.io/api v0.22.3
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/go-logr/logr v0.4.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.5 // indirect
|
|
github.com/google/gofuzz v1.1.0 // indirect
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/objx v0.3.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/appengine v1.6.5 // indirect
|
|
google.golang.org/grpc v1.41.0 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
k8s.io/klog/v2 v2.9.0 // indirect
|
|
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
|
|
sigs.k8s.io/yaml v1.2.0 // indirect
|
|
)
|