File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,11 @@ issue:
52
52
max-per-linter : 0
53
53
issues :
54
54
exclude-rules :
55
+ # Specific exclude rules for deprecated fields that are still part of the codebase. These
56
+ # should be removed as the referenced deprecated item is removed from the project.
57
+ - linters :
58
+ - staticcheck
59
+ text : " SA1019: failureDomain.AutoConfigure is deprecated"
55
60
- path : " test/e2e/*"
56
61
linters :
57
62
- gosec
Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ type FailureDomain struct {
54
54
TagCategory string `json:"tagCategory"`
55
55
56
56
// AutoConfigure tags the Type which is specified in the Topology
57
+ //
58
+ // Deprecated: This field is going to be removed in a future release.
57
59
AutoConfigure * bool `json:"autoConfigure,omitempty"`
58
60
}
59
61
Original file line number Diff line number Diff line change @@ -283,8 +283,9 @@ spec:
283
283
description : Region defines the name and type of a region
284
284
properties :
285
285
autoConfigure :
286
- description : AutoConfigure tags the Type which is specified in
287
- the Topology
286
+ description : " AutoConfigure tags the Type which is specified in
287
+ the Topology \n Deprecated: This field is going to be removed
288
+ in a future release."
288
289
type : boolean
289
290
name :
290
291
description : Name is the name of the tag that represents this
@@ -347,8 +348,9 @@ spec:
347
348
description : Zone defines the name and type of a zone
348
349
properties :
349
350
autoConfigure :
350
- description : AutoConfigure tags the Type which is specified in
351
- the Topology
351
+ description : " AutoConfigure tags the Type which is specified in
352
+ the Topology \n Deprecated: This field is going to be removed
353
+ in a future release."
352
354
type : boolean
353
355
name :
354
356
description : Name is the name of the tag that represents this
You can’t perform that action at this time.
0 commit comments