2019-10-30 03:04:39 -04:00
|
|
|
/*
|
|
|
|
* MinIO Cloud Storage, (C) 2019 MinIO, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package etcd
|
|
|
|
|
|
|
|
import "github.com/minio/minio/cmd/config"
|
|
|
|
|
|
|
|
// etcd config documented in default config
|
|
|
|
var (
|
2019-11-19 16:48:13 -05:00
|
|
|
Help = config.HelpKVS{
|
|
|
|
config.HelpKV{
|
|
|
|
Key: config.State,
|
|
|
|
Description: "Indicates if etcd config is on or off",
|
|
|
|
Type: "on|off",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Endpoints,
|
|
|
|
Description: `Comma separated list of etcd endpoints eg: "http://localhost:2379"`,
|
|
|
|
Type: "delimited-string",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: CoreDNSPath,
|
|
|
|
Description: `CoreDNS etcd path location to populate DNS srv records eg: "/skydns"`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "path",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: ClientCert,
|
|
|
|
Description: `Etcd client cert for mTLS authentication`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "path",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: ClientCertKey,
|
|
|
|
Description: `Etcd client cert key for mTLS authentication`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "path",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: config.Comment,
|
|
|
|
Description: "A comment to describe the etcd settings",
|
|
|
|
Optional: true,
|
|
|
|
Type: "sentence",
|
|
|
|
},
|
2019-10-30 03:04:39 -04:00
|
|
|
}
|
|
|
|
)
|