Commit 841fca0 1 parent 2d927b9 commit 841fca0 Copy full SHA for 841fca0
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,15 @@ const (
31
31
// DetectDrift configures the detection of cluster state drift compared to
32
32
// the desired state as described in the manifest of the Helm release
33
33
// storage object.
34
+ // Deprecated in v0.37.0, use the drift detection mode on the HelmRelease
35
+ // object instead.
34
36
DetectDrift = "DetectDrift"
35
37
36
38
// CorrectDrift configures the correction of cluster state drift compared to
37
39
// the desired state as described in the manifest of the Helm release. It
38
40
// is only effective when DetectDrift is enabled.
41
+ // Deprecated in v0.37.0, use the drift detection mode on the HelmRelease
42
+ // object instead.
39
43
CorrectDrift = "CorrectDrift"
40
44
41
45
// AllowDNSLookups allows the controller to perform DNS lookups when rendering Helm
@@ -61,11 +65,11 @@ var features = map[string]bool{
61
65
// opt-in from v0.28
62
66
CacheSecretsAndConfigMaps : false ,
63
67
// DetectDrift
64
- // opt- in from v0.31
68
+ // deprecated in v0.37.0
65
69
DetectDrift : false ,
66
70
// CorrectDrift,
67
- // opt-out from v0.31.2
68
- CorrectDrift : true ,
71
+ // deprecated in v0.37.0
72
+ CorrectDrift : false ,
69
73
// AllowDNSLookups
70
74
// opt-in from v0.31
71
75
AllowDNSLookups : false ,
You can’t perform that action at this time.
0 commit comments