Skip to content

Commit a89e6ba

Browse files
Fix for enabling all features (#1097)
Co-authored-by: Adam Janikowski <12255597+ajanikow@users.noreply.github.com>
1 parent 4099d11 commit a89e6ba

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- (Bugfix) Fix ClusterScaling integration
2323
- (Feature) Sensitive information protection
2424
- (Bugfix) Propagate SecurityContext to the ID Containers
25+
- (Bugfix) Fix for enabling all features
2526

2627
## [1.2.15](https://github.com/arangodb/kube-arangodb/tree/1.2.15) (2022-07-20)
2728
- (Bugfix) Ensure pod names not too long

pkg/deployment/features/features.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ func (f feature) Enabled() bool {
5959
return *f.constValue
6060
}
6161

62+
if enableAll {
63+
return true
64+
}
65+
6266
return f.enabled
6367
}
6468

0 commit comments

Comments
 (0)