1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
This commit is contained in:
ajanikow 2020-07-29 09:57:48 +00:00
parent feb1ca0f9a
commit 3f53b9aebc
2 changed files with 7 additions and 2 deletions

View file

@ -302,7 +302,11 @@ func TestEnsurePod_ArangoDB_Encryption(t *testing.T) {
Command: BuildTestAgentArgs(t, firstAgentStatus.ID,
AgentArgsWithTLS(firstAgentStatus.ID, false),
ArgsWithAuth(false),
ArgsWithEncryptionFolder()),
ArgsWithEncryptionFolder(), func(t *testing.T) map[string]string {
return map[string]string{
"rocksdb.encryption-key-rotation": "true",
}
}),
Ports: createTestPorts(),
VolumeMounts: []core.VolumeMount{
k8sutil.ArangodVolumeMount(),

View file

@ -26,7 +26,6 @@ import (
"crypto/sha1"
"encoding/json"
"fmt"
"github.com/arangodb/kube-arangodb/pkg/deployment/features"
"net"
"net/url"
"path/filepath"
@ -34,6 +33,8 @@ import (
"sync"
"time"
"github.com/arangodb/kube-arangodb/pkg/deployment/features"
"github.com/arangodb/kube-arangodb/pkg/deployment/resources/inspector"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil/interfaces"