2024-02-11 01:31:01 +08:00
|
|
|
package types
|
|
|
|
|
|
|
|
type Etcd struct {
|
2024-10-03 20:35:48 +08:00
|
|
|
Endpoints []string `yaml:"Endpoints"`
|
|
|
|
Tls EtcdTls `yaml:"Tls"`
|
2024-02-11 01:31:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type EtcdTls struct {
|
2024-10-03 20:35:48 +08:00
|
|
|
Ca string `yaml:"Ca"`
|
|
|
|
Cert string `yaml:"Cert"`
|
|
|
|
CertKey string `yaml:"CertKey" `
|
2024-02-11 01:31:01 +08:00
|
|
|
}
|