mirror of
https://github.com/rancher/types.git
synced 2025-08-01 04:57:05 +00:00
go generate
This commit is contained in:
parent
abe109e886
commit
0492fe63f8
@ -1,12 +1,22 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
ETCDServiceType = "etcdService"
|
||||
ETCDServiceFieldExtraArgs = "extraArgs"
|
||||
ETCDServiceFieldImage = "image"
|
||||
ETCDServiceType = "etcdService"
|
||||
ETCDServiceFieldCACert = "caCert"
|
||||
ETCDServiceFieldCert = "cert"
|
||||
ETCDServiceFieldEtcdServers = "etcdServers"
|
||||
ETCDServiceFieldExtraArgs = "extraArgs"
|
||||
ETCDServiceFieldImage = "image"
|
||||
ETCDServiceFieldKey = "key"
|
||||
ETCDServiceFieldPath = "path"
|
||||
)
|
||||
|
||||
type ETCDService struct {
|
||||
ExtraArgs map[string]string `json:"extraArgs,omitempty"`
|
||||
Image string `json:"image,omitempty"`
|
||||
CACert string `json:"caCert,omitempty"`
|
||||
Cert string `json:"cert,omitempty"`
|
||||
EtcdServers string `json:"etcdServers,omitempty"`
|
||||
ExtraArgs map[string]string `json:"extraArgs,omitempty"`
|
||||
Image string `json:"image,omitempty"`
|
||||
Key string `json:"key,omitempty"`
|
||||
Path string `json:"path,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user