1
0
mirror of https://github.com/rancher/types.git synced 2025-08-01 04:57:05 +00:00

go generate

This commit is contained in:
galal-hussein 2018-02-14 02:06:41 +02:00 committed by Darren Shepherd
parent abe109e886
commit 0492fe63f8

View File

@ -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"`
}