We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4099d11 commit a89e6baCopy full SHA for a89e6ba
CHANGELOG.md
@@ -22,6 +22,7 @@
22
- (Bugfix) Fix ClusterScaling integration
23
- (Feature) Sensitive information protection
24
- (Bugfix) Propagate SecurityContext to the ID Containers
25
+- (Bugfix) Fix for enabling all features
26
27
## [1.2.15](https://github.com/arangodb/kube-arangodb/tree/1.2.15) (2022-07-20)
28
- (Bugfix) Ensure pod names not too long
pkg/deployment/features/features.go
@@ -59,6 +59,10 @@ func (f feature) Enabled() bool {
59
return *f.constValue
60
}
61
62
+ if enableAll {
63
+ return true
64
+ }
65
+
66
return f.enabled
67
68
0 commit comments