We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de5dfa5 commit d38cd45Copy full SHA for d38cd45
1 file changed
pkg/reconcilers/etcd_cluster/reconciler.go
@@ -814,7 +814,7 @@ func (er *etcdClusterReconciler) buildEtcdArgs(
814
"quota-backend-bytes": strconv.Itoa(int(storageQuota)),
815
}
816
817
- if int64(etcdVersion.Minor) >= version.V3_7.Minor { //nolint:gosec // semver minor will never overflow int64
+ if int64(etcdVersion.Minor) < version.V3_7.Minor { //nolint:gosec // semver minor will never overflow int64
818
// this is deprecated and will be removed in 3.7
819
// TODO: remove this when we roll 3.7
820
args["snapshot-count"] = "10000"
0 commit comments