- If MinIO is configured with LDAP then users and groups are external, and the credentials provided in the CONSOLE_ACCESS_KEY and CONSOLE_SECRET_KEY env vars will belong to an existing user in the active directory, therefore we need to authenticate first with `credentials.NewLDAPIdentity` - Fixed race condition bug in which TLS RootCAs certs were not loading correctly (certPool was always null) - Fixed TLS bug in which if Console was deployed without TLS enabled RootCAs certs were not loading - Initialize LDAP Admin credentials once - Initialize stsClient once
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module github.com/minio/console
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
|
github.com/elazarl/go-bindata-assetfs v1.0.0
|
|
github.com/go-openapi/errors v0.19.6
|
|
github.com/go-openapi/loads v0.19.5
|
|
github.com/go-openapi/runtime v0.19.19
|
|
github.com/go-openapi/spec v0.19.8
|
|
github.com/go-openapi/strfmt v0.19.5
|
|
github.com/go-openapi/swag v0.19.9
|
|
github.com/go-openapi/validate v0.19.10
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/minio/cli v1.22.0
|
|
github.com/minio/kes v0.11.0
|
|
github.com/minio/mc v0.0.0-20201119214335-d4f9ea859d6c
|
|
github.com/minio/minio v0.0.0-20201102034248-d8e07f2c41c8
|
|
github.com/minio/minio-go/v7 v7.0.6-0.20201119032702-6914cb678dde
|
|
github.com/minio/operator v0.0.0-20201022162018-527e5c32132b
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
|
github.com/secure-io/sio-go v0.3.1
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/unrolled/secure v1.0.7
|
|
golang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee
|
|
golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
gopkg.in/yaml.v2 v2.3.0
|
|
k8s.io/api v0.18.6
|
|
k8s.io/apimachinery v0.18.6
|
|
k8s.io/client-go v0.18.6
|
|
)
|