mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
91 lines
2.3 KiB
Go
91 lines
2.3 KiB
Go
// Copyright 2022 The etcd Authors
|
|
//
|
|
// 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 config
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TLSConfig string
|
|
|
|
const (
|
|
NoTLS TLSConfig = ""
|
|
AutoTLS TLSConfig = "auto-tls"
|
|
ManualTLS TLSConfig = "manual-tls"
|
|
|
|
TickDuration = 10 * time.Millisecond
|
|
)
|
|
|
|
type ClusterConfig struct {
|
|
ClusterSize int
|
|
PeerTLS TLSConfig
|
|
ClientTLS TLSConfig
|
|
QuotaBackendBytes int64
|
|
StrictReconfigCheck bool
|
|
AuthToken string
|
|
SnapshotCount uint64
|
|
|
|
// ClusterContext is used by "e2e" or "integration" to extend the
|
|
// ClusterConfig. The common test cases shouldn't care about what
|
|
// data is encoded or included; instead "e2e" or "integration"
|
|
// framework should decode or parse it separately.
|
|
ClusterContext any
|
|
}
|
|
|
|
func DefaultClusterConfig() ClusterConfig {
|
|
return ClusterConfig{
|
|
ClusterSize: 3,
|
|
StrictReconfigCheck: true,
|
|
}
|
|
}
|
|
|
|
func NewClusterConfig(opts ...ClusterOption) ClusterConfig {
|
|
c := DefaultClusterConfig()
|
|
for _, opt := range opts {
|
|
opt(&c)
|
|
}
|
|
return c
|
|
}
|
|
|
|
type ClusterOption func(*ClusterConfig)
|
|
|
|
func WithClusterConfig(cfg ClusterConfig) ClusterOption {
|
|
return func(c *ClusterConfig) { *c = cfg }
|
|
}
|
|
|
|
func WithClusterSize(size int) ClusterOption {
|
|
return func(c *ClusterConfig) { c.ClusterSize = size }
|
|
}
|
|
|
|
func WithPeerTLS(tls TLSConfig) ClusterOption {
|
|
return func(c *ClusterConfig) { c.PeerTLS = tls }
|
|
}
|
|
|
|
func WithClientTLS(tls TLSConfig) ClusterOption {
|
|
return func(c *ClusterConfig) { c.ClientTLS = tls }
|
|
}
|
|
|
|
func WithQuotaBackendBytes(bytes int64) ClusterOption {
|
|
return func(c *ClusterConfig) { c.QuotaBackendBytes = bytes }
|
|
}
|
|
|
|
func WithSnapshotCount(count uint64) ClusterOption {
|
|
return func(c *ClusterConfig) { c.SnapshotCount = count }
|
|
}
|
|
|
|
func WithStrictReconfigCheck(strict bool) ClusterOption {
|
|
return func(c *ClusterConfig) { c.StrictReconfigCheck = strict }
|
|
}
|