You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type ETCD struct {// TODO: support external etcd.// StorageMode etcd data storage mode(emptyDir,hostPath, PVC), default "emptyDir"// +optionalStorageMode string `json:"storageMode,omitempty"`// If specified StorageMode is PVC, StorageClass must be set.// +optionalStorageClass string `json:"storageClass,omitempty"`// If specified StorageMode is PVC, Size must be set.// +optionalSize string `json:"size,omitempty"`}
advice spec is
type ETCD struct {
// Storage about etcd data storage config
// +optional
Storage corev1.Volume `json:"storage,omitempty"`
// Servers is config external etcd
// +optional
Servers string `json:"servers,omitempty"`
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: