mirror of
https://github.com/minio/minio.git
synced 2025-04-04 11:50:36 -04:00
Add etcd path prefix for all IAM assets (#8569)
Currently, we use the top-level prefix "config/" for all our IAM assets, instead of to provide tenant-level separation bring 'path_prefix' to namespace the access properly. Fixes #8567
This commit is contained in:
parent
f931fc7bfb
commit
e542084c37
@ -28,10 +28,10 @@ import (
|
|||||||
"google.golang.org/api/googleapi"
|
"google.golang.org/api/googleapi"
|
||||||
|
|
||||||
minio "github.com/minio/minio-go/v6"
|
minio "github.com/minio/minio-go/v6"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/auth"
|
"github.com/minio/minio/pkg/auth"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/event"
|
"github.com/minio/minio/pkg/event"
|
||||||
"github.com/minio/minio/pkg/hash"
|
"github.com/minio/minio/pkg/hash"
|
||||||
)
|
)
|
||||||
|
@ -32,10 +32,10 @@ import (
|
|||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
|
|
||||||
"github.com/minio/minio-go/v6/pkg/set"
|
"github.com/minio/minio-go/v6/pkg/set"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/event"
|
"github.com/minio/minio/pkg/event"
|
||||||
"github.com/minio/minio/pkg/handlers"
|
"github.com/minio/minio/pkg/handlers"
|
||||||
"github.com/minio/minio/pkg/hash"
|
"github.com/minio/minio/pkg/hash"
|
||||||
|
@ -25,6 +25,8 @@ import (
|
|||||||
"github.com/minio/minio/cmd/config/cache"
|
"github.com/minio/minio/cmd/config/cache"
|
||||||
"github.com/minio/minio/cmd/config/compress"
|
"github.com/minio/minio/cmd/config/compress"
|
||||||
"github.com/minio/minio/cmd/config/etcd"
|
"github.com/minio/minio/cmd/config/etcd"
|
||||||
|
xetcd "github.com/minio/minio/cmd/config/etcd"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
xldap "github.com/minio/minio/cmd/config/identity/ldap"
|
xldap "github.com/minio/minio/cmd/config/identity/ldap"
|
||||||
"github.com/minio/minio/cmd/config/identity/openid"
|
"github.com/minio/minio/cmd/config/identity/openid"
|
||||||
"github.com/minio/minio/cmd/config/notify"
|
"github.com/minio/minio/cmd/config/notify"
|
||||||
@ -34,7 +36,6 @@ import (
|
|||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/cmd/logger/target/http"
|
"github.com/minio/minio/cmd/logger/target/http"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/env"
|
"github.com/minio/minio/pkg/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -134,18 +135,18 @@ func lookupConfigs(s config.Config) (err error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
etcdCfg, err := etcd.LookupConfig(s[config.EtcdSubSys][config.Default], globalRootCAs)
|
etcdCfg, err := xetcd.LookupConfig(s[config.EtcdSubSys][config.Default], globalRootCAs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return config.Errorf("Unable to initialize etcd config: %s", err)
|
return config.Errorf("Unable to initialize etcd config: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
globalEtcdClient, err = etcd.New(etcdCfg)
|
globalEtcdClient, err = xetcd.New(etcdCfg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return config.Errorf("Unable to initialize etcd config: %s", err)
|
return config.Errorf("Unable to initialize etcd config: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(globalDomainNames) != 0 && !globalDomainIPs.IsEmpty() && globalEtcdClient != nil {
|
if len(globalDomainNames) != 0 && !globalDomainIPs.IsEmpty() && globalEtcdClient != nil {
|
||||||
globalDNSConfig, err = dns.NewCoreDNS(globalEtcdClient,
|
globalDNSConfig, err = dns.NewCoreDNS(etcdCfg.Config,
|
||||||
dns.DomainNames(globalDomainNames),
|
dns.DomainNames(globalDomainNames),
|
||||||
dns.DomainIPs(globalDomainIPs),
|
dns.DomainIPs(globalDomainIPs),
|
||||||
dns.DomainPort(globalMinioPort),
|
dns.DomainPort(globalMinioPort),
|
||||||
|
@ -29,7 +29,7 @@ import (
|
|||||||
"github.com/minio/minio-go/v6/pkg/set"
|
"github.com/minio/minio-go/v6/pkg/set"
|
||||||
|
|
||||||
"github.com/coredns/coredns/plugin/etcd/msg"
|
"github.com/coredns/coredns/plugin/etcd/msg"
|
||||||
etcd "github.com/coreos/etcd/clientv3"
|
"github.com/coreos/etcd/clientv3"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ErrNoEntriesFound - Indicates no entries were found for the given key (directory)
|
// ErrNoEntriesFound - Indicates no entries were found for the given key (directory)
|
||||||
@ -106,7 +106,7 @@ func msgUnPath(s string) string {
|
|||||||
// Note that this method fetches entries upto only two levels deep.
|
// Note that this method fetches entries upto only two levels deep.
|
||||||
func (c *CoreDNS) list(key string) ([]SrvRecord, error) {
|
func (c *CoreDNS) list(key string) ([]SrvRecord, error) {
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), defaultContextTimeout)
|
ctx, cancel := context.WithTimeout(context.Background(), defaultContextTimeout)
|
||||||
r, err := c.etcdClient.Get(ctx, key, etcd.WithPrefix())
|
r, err := c.etcdClient.Get(ctx, key, clientv3.WithPrefix())
|
||||||
defer cancel()
|
defer cancel()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -217,7 +217,7 @@ type CoreDNS struct {
|
|||||||
domainIPs set.StringSet
|
domainIPs set.StringSet
|
||||||
domainPort string
|
domainPort string
|
||||||
prefixPath string
|
prefixPath string
|
||||||
etcdClient *etcd.Client
|
etcdClient *clientv3.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
// Option - functional options pattern style
|
// Option - functional options pattern style
|
||||||
@ -257,14 +257,14 @@ func CoreDNSPath(prefix string) Option {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewCoreDNS - initialize a new coreDNS set/unset values.
|
// NewCoreDNS - initialize a new coreDNS set/unset values.
|
||||||
func NewCoreDNS(etcdClient *etcd.Client, setters ...Option) (Config, error) {
|
func NewCoreDNS(cfg clientv3.Config, setters ...Option) (*CoreDNS, error) {
|
||||||
if etcdClient == nil {
|
etcdClient, err := clientv3.New(cfg)
|
||||||
return nil, errors.New("invalid argument")
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
args := &CoreDNS{
|
args := &CoreDNS{
|
||||||
etcdClient: etcdClient,
|
etcdClient: etcdClient,
|
||||||
prefixPath: defaultPrefixPath,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, setter := range setters {
|
for _, setter := range setters {
|
@ -55,13 +55,3 @@ type SrvRecord struct {
|
|||||||
// Key carries the original key used during Put().
|
// Key carries the original key used during Put().
|
||||||
Key string `json:"-"`
|
Key string `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Config - represents dns put, get interface. This interface can be
|
|
||||||
// used to implement various backends as needed.
|
|
||||||
type Config interface {
|
|
||||||
Put(key string) error
|
|
||||||
List() ([]SrvRecord, error)
|
|
||||||
Get(key string) ([]SrvRecord, error)
|
|
||||||
Delete(key string) error
|
|
||||||
DeleteRecord(record SrvRecord) error
|
|
||||||
}
|
|
@ -24,6 +24,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/coreos/etcd/clientv3"
|
"github.com/coreos/etcd/clientv3"
|
||||||
|
"github.com/coreos/etcd/clientv3/namespace"
|
||||||
"github.com/minio/minio/cmd/config"
|
"github.com/minio/minio/cmd/config"
|
||||||
"github.com/minio/minio/pkg/env"
|
"github.com/minio/minio/pkg/env"
|
||||||
xnet "github.com/minio/minio/pkg/net"
|
xnet "github.com/minio/minio/pkg/net"
|
||||||
@ -38,12 +39,14 @@ const (
|
|||||||
// etcd environment values
|
// etcd environment values
|
||||||
const (
|
const (
|
||||||
Endpoints = "endpoints"
|
Endpoints = "endpoints"
|
||||||
|
PathPrefix = "path_prefix"
|
||||||
CoreDNSPath = "coredns_path"
|
CoreDNSPath = "coredns_path"
|
||||||
ClientCert = "client_cert"
|
ClientCert = "client_cert"
|
||||||
ClientCertKey = "client_cert_key"
|
ClientCertKey = "client_cert_key"
|
||||||
|
|
||||||
EnvEtcdState = "MINIO_ETCD_STATE"
|
EnvEtcdState = "MINIO_ETCD_STATE"
|
||||||
EnvEtcdEndpoints = "MINIO_ETCD_ENDPOINTS"
|
EnvEtcdEndpoints = "MINIO_ETCD_ENDPOINTS"
|
||||||
|
EnvEtcdPathPrefix = "MINIO_ETCD_PATH_PREFIX"
|
||||||
EnvEtcdCoreDNSPath = "MINIO_ETCD_COREDNS_PATH"
|
EnvEtcdCoreDNSPath = "MINIO_ETCD_COREDNS_PATH"
|
||||||
EnvEtcdClientCert = "MINIO_ETCD_CLIENT_CERT"
|
EnvEtcdClientCert = "MINIO_ETCD_CLIENT_CERT"
|
||||||
EnvEtcdClientCertKey = "MINIO_ETCD_CLIENT_CERT_KEY"
|
EnvEtcdClientCertKey = "MINIO_ETCD_CLIENT_CERT_KEY"
|
||||||
@ -60,6 +63,10 @@ var (
|
|||||||
Key: Endpoints,
|
Key: Endpoints,
|
||||||
Value: "",
|
Value: "",
|
||||||
},
|
},
|
||||||
|
config.KV{
|
||||||
|
Key: PathPrefix,
|
||||||
|
Value: "",
|
||||||
|
},
|
||||||
config.KV{
|
config.KV{
|
||||||
Key: CoreDNSPath,
|
Key: CoreDNSPath,
|
||||||
Value: "/skydns",
|
Value: "/skydns",
|
||||||
@ -78,6 +85,7 @@ var (
|
|||||||
// Config - server etcd config.
|
// Config - server etcd config.
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Enabled bool `json:"enabled"`
|
Enabled bool `json:"enabled"`
|
||||||
|
PathPrefix string `json:"pathPrefix"`
|
||||||
CoreDNSPath string `json:"coreDNSPath"`
|
CoreDNSPath string `json:"coreDNSPath"`
|
||||||
clientv3.Config
|
clientv3.Config
|
||||||
}
|
}
|
||||||
@ -87,7 +95,14 @@ func New(cfg Config) (*clientv3.Client, error) {
|
|||||||
if !cfg.Enabled {
|
if !cfg.Enabled {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
return clientv3.New(cfg.Config)
|
cli, err := clientv3.New(cfg.Config)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
cli.KV = namespace.NewKV(cli.KV, cfg.PathPrefix)
|
||||||
|
cli.Watcher = namespace.NewWatcher(cli.Watcher, cfg.PathPrefix)
|
||||||
|
cli.Lease = namespace.NewLease(cli.Lease, cfg.PathPrefix)
|
||||||
|
return cli, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseEndpoints(endpoints string) ([]string, bool, error) {
|
func parseEndpoints(endpoints string) ([]string, bool, error) {
|
||||||
@ -123,7 +138,9 @@ func lookupLegacyConfig(rootCAs *x509.CertPool) (Config, error) {
|
|||||||
cfg.DialTimeout = defaultDialTimeout
|
cfg.DialTimeout = defaultDialTimeout
|
||||||
cfg.DialKeepAliveTime = defaultDialKeepAlive
|
cfg.DialKeepAliveTime = defaultDialKeepAlive
|
||||||
cfg.Endpoints = etcdEndpoints
|
cfg.Endpoints = etcdEndpoints
|
||||||
cfg.CoreDNSPath = "/skydns"
|
cfg.CoreDNSPath = env.Get(EnvEtcdCoreDNSPath, "/skydns")
|
||||||
|
// Default path prefix for all keys on etcd, other than CoreDNSPath.
|
||||||
|
cfg.PathPrefix = env.Get(EnvEtcdPathPrefix, "")
|
||||||
if etcdSecure {
|
if etcdSecure {
|
||||||
cfg.TLS = &tls.Config{
|
cfg.TLS = &tls.Config{
|
||||||
RootCAs: rootCAs,
|
RootCAs: rootCAs,
|
||||||
@ -149,13 +166,9 @@ func LookupConfig(kvs config.KVS, rootCAs *x509.CertPool) (Config, error) {
|
|||||||
return cfg, err
|
return cfg, err
|
||||||
}
|
}
|
||||||
|
|
||||||
stateBool, err := config.ParseBool(env.Get(EnvEtcdState, config.StateOn))
|
if env.Get(EnvEtcdEndpoints, "") != "" && env.Get(EnvEtcdState, "") == "" {
|
||||||
if err != nil {
|
|
||||||
return cfg, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if stateBool {
|
|
||||||
// By default state is 'on' to honor legacy config.
|
// By default state is 'on' to honor legacy config.
|
||||||
|
var err error
|
||||||
cfg, err = lookupLegacyConfig(rootCAs)
|
cfg, err = lookupLegacyConfig(rootCAs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return cfg, err
|
return cfg, err
|
||||||
@ -166,7 +179,7 @@ func LookupConfig(kvs config.KVS, rootCAs *x509.CertPool) (Config, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stateBool, err = config.ParseBool(env.Get(EnvEtcdState, kvs.Get(config.State)))
|
stateBool, err := config.ParseBool(env.Get(EnvEtcdState, kvs.Get(config.State)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if kvs.Empty() {
|
if kvs.Empty() {
|
||||||
return cfg, nil
|
return cfg, nil
|
||||||
@ -193,6 +206,8 @@ func LookupConfig(kvs config.KVS, rootCAs *x509.CertPool) (Config, error) {
|
|||||||
cfg.DialKeepAliveTime = defaultDialKeepAlive
|
cfg.DialKeepAliveTime = defaultDialKeepAlive
|
||||||
cfg.Endpoints = etcdEndpoints
|
cfg.Endpoints = etcdEndpoints
|
||||||
cfg.CoreDNSPath = env.Get(EnvEtcdCoreDNSPath, kvs.Get(CoreDNSPath))
|
cfg.CoreDNSPath = env.Get(EnvEtcdCoreDNSPath, kvs.Get(CoreDNSPath))
|
||||||
|
// Default path prefix for all keys on etcd, other than CoreDNSPath.
|
||||||
|
cfg.PathPrefix = env.Get(EnvEtcdPathPrefix, kvs.Get(PathPrefix))
|
||||||
if etcdSecure {
|
if etcdSecure {
|
||||||
cfg.TLS = &tls.Config{
|
cfg.TLS = &tls.Config{
|
||||||
RootCAs: rootCAs,
|
RootCAs: rootCAs,
|
||||||
|
@ -26,9 +26,14 @@ var (
|
|||||||
Description: `Comma separated list of etcd endpoints eg: "http://localhost:2379"`,
|
Description: `Comma separated list of etcd endpoints eg: "http://localhost:2379"`,
|
||||||
Type: "csv",
|
Type: "csv",
|
||||||
},
|
},
|
||||||
|
config.HelpKV{
|
||||||
|
Key: PathPrefix,
|
||||||
|
Description: `Default etcd path prefix to populate all IAM assets eg: "customer/"`,
|
||||||
|
Type: "path",
|
||||||
|
},
|
||||||
config.HelpKV{
|
config.HelpKV{
|
||||||
Key: CoreDNSPath,
|
Key: CoreDNSPath,
|
||||||
Description: `CoreDNS etcd path location to populate DNS srv records eg: "/skydns"`,
|
Description: `Default etcd path location to populate bucket DNS srv records eg: "/skydns"`,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Type: "path",
|
Type: "path",
|
||||||
},
|
},
|
||||||
|
@ -25,10 +25,10 @@ import (
|
|||||||
"github.com/minio/minio-go/v6/pkg/set"
|
"github.com/minio/minio-go/v6/pkg/set"
|
||||||
|
|
||||||
humanize "github.com/dustin/go-humanize"
|
humanize "github.com/dustin/go-humanize"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/handlers"
|
"github.com/minio/minio/pkg/handlers"
|
||||||
"github.com/rs/cors"
|
"github.com/rs/cors"
|
||||||
)
|
)
|
||||||
|
@ -27,6 +27,7 @@ import (
|
|||||||
humanize "github.com/dustin/go-humanize"
|
humanize "github.com/dustin/go-humanize"
|
||||||
"github.com/minio/minio/cmd/config/cache"
|
"github.com/minio/minio/cmd/config/cache"
|
||||||
"github.com/minio/minio/cmd/config/compress"
|
"github.com/minio/minio/cmd/config/compress"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
xldap "github.com/minio/minio/cmd/config/identity/ldap"
|
xldap "github.com/minio/minio/cmd/config/identity/ldap"
|
||||||
"github.com/minio/minio/cmd/config/identity/openid"
|
"github.com/minio/minio/cmd/config/identity/openid"
|
||||||
"github.com/minio/minio/cmd/config/policy/opa"
|
"github.com/minio/minio/cmd/config/policy/opa"
|
||||||
@ -35,7 +36,6 @@ import (
|
|||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/pkg/auth"
|
"github.com/minio/minio/pkg/auth"
|
||||||
"github.com/minio/minio/pkg/certs"
|
"github.com/minio/minio/pkg/certs"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/pubsub"
|
"github.com/minio/minio/pkg/pubsub"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -208,7 +208,7 @@ var (
|
|||||||
globalEtcdClient *etcd.Client
|
globalEtcdClient *etcd.Client
|
||||||
|
|
||||||
// Allocated DNS config wrapper over etcd client.
|
// Allocated DNS config wrapper over etcd client.
|
||||||
globalDNSConfig dns.Config
|
globalDNSConfig *dns.CoreDNS
|
||||||
|
|
||||||
// Default usage check interval value.
|
// Default usage check interval value.
|
||||||
globalDefaultUsageCheckInterval = 12 * time.Hour // 12 hours
|
globalDefaultUsageCheckInterval = 12 * time.Hour // 12 hours
|
||||||
|
@ -549,6 +549,7 @@ func (ies *IAMEtcdStore) watch(sys *IAMSys) {
|
|||||||
// Refresh IAMSys with etcd watch.
|
// Refresh IAMSys with etcd watch.
|
||||||
watchCh := ies.client.Watch(context.Background(),
|
watchCh := ies.client.Watch(context.Background(),
|
||||||
iamConfigPrefix, etcd.WithPrefix(), etcd.WithKeysOnly())
|
iamConfigPrefix, etcd.WithPrefix(), etcd.WithKeysOnly())
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-GlobalServiceDoneCh:
|
case <-GlobalServiceDoneCh:
|
||||||
|
@ -37,11 +37,11 @@ import (
|
|||||||
"github.com/klauspost/readahead"
|
"github.com/klauspost/readahead"
|
||||||
"github.com/minio/minio-go/v6/pkg/s3utils"
|
"github.com/minio/minio-go/v6/pkg/s3utils"
|
||||||
"github.com/minio/minio/cmd/config/compress"
|
"github.com/minio/minio/cmd/config/compress"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/config/storageclass"
|
"github.com/minio/minio/cmd/config/storageclass"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/hash"
|
"github.com/minio/minio/pkg/hash"
|
||||||
"github.com/minio/minio/pkg/ioutil"
|
"github.com/minio/minio/pkg/ioutil"
|
||||||
"github.com/minio/minio/pkg/wildcard"
|
"github.com/minio/minio/pkg/wildcard"
|
||||||
|
@ -35,11 +35,11 @@ import (
|
|||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
miniogo "github.com/minio/minio-go/v6"
|
miniogo "github.com/minio/minio-go/v6"
|
||||||
"github.com/minio/minio-go/v6/pkg/encrypt"
|
"github.com/minio/minio-go/v6/pkg/encrypt"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/config/storageclass"
|
"github.com/minio/minio/cmd/config/storageclass"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/event"
|
"github.com/minio/minio/pkg/event"
|
||||||
"github.com/minio/minio/pkg/handlers"
|
"github.com/minio/minio/pkg/handlers"
|
||||||
"github.com/minio/minio/pkg/hash"
|
"github.com/minio/minio/pkg/hash"
|
||||||
|
@ -39,12 +39,12 @@ import (
|
|||||||
"github.com/minio/minio-go/v6/pkg/s3utils"
|
"github.com/minio/minio-go/v6/pkg/s3utils"
|
||||||
"github.com/minio/minio-go/v6/pkg/set"
|
"github.com/minio/minio-go/v6/pkg/set"
|
||||||
"github.com/minio/minio/browser"
|
"github.com/minio/minio/browser"
|
||||||
|
"github.com/minio/minio/cmd/config/etcd/dns"
|
||||||
"github.com/minio/minio/cmd/config/identity/openid"
|
"github.com/minio/minio/cmd/config/identity/openid"
|
||||||
"github.com/minio/minio/cmd/crypto"
|
"github.com/minio/minio/cmd/crypto"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/pkg/auth"
|
"github.com/minio/minio/pkg/auth"
|
||||||
"github.com/minio/minio/pkg/dns"
|
|
||||||
"github.com/minio/minio/pkg/event"
|
"github.com/minio/minio/pkg/event"
|
||||||
"github.com/minio/minio/pkg/handlers"
|
"github.com/minio/minio/pkg/handlers"
|
||||||
"github.com/minio/minio/pkg/hash"
|
"github.com/minio/minio/pkg/hash"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user