Commit ba7eb6c1 authored by Brad Davidson's avatar Brad Davidson Committed by Brad Davidson

Redact datastore and etcd snapshot config from serialization

Signed-off-by: 's avatarBrad Davidson <brad.davidson@rancher.com> (cherry picked from commit e7437d4a)
parent 5d4e9d5e
...@@ -138,7 +138,7 @@ type Control struct { ...@@ -138,7 +138,7 @@ type Control struct {
KubeConfigOutput string KubeConfigOutput string
KubeConfigMode string KubeConfigMode string
DataDir string DataDir string
Datastore endpoint.Config Datastore endpoint.Config `json:"-"`
DisableAPIServer bool DisableAPIServer bool
DisableControllerManager bool DisableControllerManager bool
DisableETCD bool DisableETCD bool
...@@ -164,25 +164,25 @@ type Control struct { ...@@ -164,25 +164,25 @@ type Control struct {
EncryptSkip bool EncryptSkip bool
TLSMinVersion uint16 TLSMinVersion uint16
TLSCipherSuites []uint16 TLSCipherSuites []uint16
EtcdSnapshotName string EtcdSnapshotName string `json:"-"`
EtcdDisableSnapshots bool EtcdDisableSnapshots bool `json:"-"`
EtcdExposeMetrics bool EtcdExposeMetrics bool `json:"-"`
EtcdSnapshotDir string EtcdSnapshotDir string `json:"-"`
EtcdSnapshotCron string EtcdSnapshotCron string `json:"-"`
EtcdSnapshotRetention int EtcdSnapshotRetention int `json:"-"`
EtcdSnapshotCompress bool EtcdSnapshotCompress bool `json:"-"`
EtcdListFormat string EtcdListFormat string `json:"-"`
EtcdS3 bool EtcdS3 bool `json:"-"`
EtcdS3Endpoint string EtcdS3Endpoint string `json:"-"`
EtcdS3EndpointCA string EtcdS3EndpointCA string `json:"-"`
EtcdS3SkipSSLVerify bool EtcdS3SkipSSLVerify bool `json:"-"`
EtcdS3AccessKey string EtcdS3AccessKey string `json:"-"`
EtcdS3SecretKey string EtcdS3SecretKey string `json:"-"`
EtcdS3BucketName string EtcdS3BucketName string `json:"-"`
EtcdS3Region string EtcdS3Region string `json:"-"`
EtcdS3Folder string EtcdS3Folder string `json:"-"`
EtcdS3Timeout time.Duration EtcdS3Timeout time.Duration `json:"-"`
EtcdS3Insecure bool EtcdS3Insecure bool `json:"-"`
ServerNodeName string ServerNodeName string
BindAddress string BindAddress string
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment