mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Fix UT
This commit is contained in:
parent
feb1ca0f9a
commit
3f53b9aebc
2 changed files with 7 additions and 2 deletions
|
@ -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(),
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue