mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Fix for enabling all features (#1097)
Co-authored-by: Adam Janikowski <12255597+ajanikow@users.noreply.github.com>
This commit is contained in:
parent
4099d11206
commit
a89e6ba176
2 changed files with 5 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
- (Bugfix) Fix ClusterScaling integration
|
||||
- (Feature) Sensitive information protection
|
||||
- (Bugfix) Propagate SecurityContext to the ID Containers
|
||||
- (Bugfix) Fix for enabling all features
|
||||
|
||||
## [1.2.15](https://github.com/arangodb/kube-arangodb/tree/1.2.15) (2022-07-20)
|
||||
- (Bugfix) Ensure pod names not too long
|
||||
|
|
|
@ -59,6 +59,10 @@ func (f feature) Enabled() bool {
|
|||
return *f.constValue
|
||||
}
|
||||
|
||||
if enableAll {
|
||||
return true
|
||||
}
|
||||
|
||||
return f.enabled
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue