@@ -130,21 +130,21 @@ type MySQLRestore struct {
130
130
// StashPerconaXtraDBSpec is the schema for Stash Percona XtraDB values file
131
131
type StashPerconaXtraDBSpec struct {
132
132
Enabled bool `json:"enabled"`
133
- Backup PerconaXtraDBBackup `json:"backup" protobuf:"bytes,4,opt,name=backup" `
134
- Restore PerconaXtraDBRestore `json:"restore" protobuf:"bytes,5,opt,name=restore" `
133
+ Backup PerconaXtraDBBackup `json:"backup"`
134
+ Restore PerconaXtraDBRestore `json:"restore"`
135
135
}
136
136
137
137
type PerconaXtraDBBackup struct {
138
138
// +optional
139
- Args string `json:"args" protobuf:"bytes,1,opt,name=args" `
139
+ Args string `json:"args"`
140
140
// +optional
141
- SocatRetry int32 `json:"socatRetry" protobuf:"varint,2,opt,name=socatRetry" `
141
+ SocatRetry int32 `json:"socatRetry"`
142
142
}
143
143
144
144
type PerconaXtraDBRestore struct {
145
145
// +optional
146
- Args string `json:"args" protobuf:"bytes,1,opt,name=args" `
147
- TargetAppReplicas int32 `json:"targetAppReplicas" protobuf:"varint,2,opt,name=targetAppReplicas" `
146
+ Args string `json:"args"`
147
+ TargetAppReplicas int32 `json:"targetAppReplicas"`
148
148
}
149
149
150
150
// StashPostgresSpec is the schema for Stash Postgres values file
0 commit comments