Skip to content

Commit 935596b

Browse files
committed
Adjust 3.7 flags
1 parent 75b3118 commit 935596b

File tree

2 files changed

+80
-95
lines changed

2 files changed

+80
-95
lines changed

dashboard/assets.go

Lines changed: 75 additions & 95 deletions
Large diffs are not rendered by default.

pkg/deployment/resources/pod_creator.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626
"crypto/sha1"
2727
"encoding/json"
2828
"fmt"
29+
"github.com/arangodb/kube-arangodb/pkg/deployment/features"
2930
"net"
3031
"net/url"
3132
"path/filepath"
@@ -149,6 +150,10 @@ func createArangodArgs(input pod.Input) []string {
149150
}
150151
}
151152

153+
if features.EncryptionRotation().Enabled() {
154+
options.Add("--rocksdb.encryption-key-rotation", "true")
155+
}
156+
152157
args := append(options.Copy().Sort().AsArgs())
153158
if len(input.GroupSpec.Args) > 0 {
154159
args = append(args, input.GroupSpec.Args...)

0 commit comments

Comments
 (0)