1
0
mirror of https://github.com/rancher/types.git synced 2025-06-26 05:31:32 +00:00

Change backups to snapshots

This commit is contained in:
galal-hussein 2018-05-17 22:06:32 +02:00
parent d289637bcc
commit 3b47c42bc8

View File

@ -171,11 +171,11 @@ type ETCDService struct {
Key string `yaml:"key" json:"key,omitempty"`
// External etcd prefix
Path string `yaml:"path" json:"path,omitempty"`
// Etcd Backup Service
Backup bool `yaml:"backup" json:"backup,omitempty"`
// Etcd Backup Retention period
// Etcd Recurring snapshot Service
Snapshot bool `yaml:"snapshot" json:"snapshot,omitempty"`
// Etcd snapshot Retention period
Retention string `yaml:"retention" json:"retention,omitempty"`
// Etcd Backup Creation period
// Etcd snapshot Creation period
Creation string `yaml:"creation" json:"creation,omitempty"`
}