From 2c7554d1de1aea6c1f3d428e2bdb7845d204afbd Mon Sep 17 00:00:00 2001 From: moelsayed Date: Fri, 1 Feb 2019 19:35:59 +0200 Subject: [PATCH] Set snapshot to false --- apis/management.cattle.io/v3/rke_types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apis/management.cattle.io/v3/rke_types.go b/apis/management.cattle.io/v3/rke_types.go index 22947064..951f62a4 100644 --- a/apis/management.cattle.io/v3/rke_types.go +++ b/apis/management.cattle.io/v3/rke_types.go @@ -197,13 +197,13 @@ type ETCDService struct { Key string `yaml:"key" json:"key,omitempty"` // External etcd prefix Path string `yaml:"path" json:"path,omitempty"` - // Etcd Recurring snapshot Service - Snapshot *bool `yaml:"snapshot" json:"snapshot,omitempty" norman:"default=true"` + // Etcd Recurring snapshot Service, used by rke only + Snapshot *bool `yaml:"snapshot" json:"snapshot,omitempty" norman:"default=false"` // Etcd snapshot Retention period Retention string `yaml:"retention" json:"retention,omitempty" norman:"default=72h"` // Etcd snapshot Creation period Creation string `yaml:"creation" json:"creation,omitempty" norman:"default=12h"` - // Backup backend for etcd snapshots, used by rke only + // Backup backend for etcd snapshots BackupConfig *BackupConfig `yaml:"backup_config" json:"backupConfig,omitempty"` }