Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ jobs:
echo 'export CLUSTER_NODES=${NUM_NODES}' >> $BASH_ENV
echo 'export CLUSTER_WORKERS=${NUM_WORKERS}' >> $BASH_ENV
echo 'export TEST_CLUSTER_PLATFORM=eks' >> $BASH_ENV
echo 'export PRIVATE_REGISTRY=$ECR_REPOSITORY' >> $BASH_ENV
- kubernetes/install
- aws-cli/install
- aws-eks/install-eksctl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "crcrud-" + testenv.RandomDNSName(2)
testSuiteName = "crcrud-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/delete_cr/deletecr_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "deletecr-" + testenv.RandomDNSName(2)
testSuiteName = "deletecr-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/ingest_search/ingest_search_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "ingestsearch-" + testenv.RandomDNSName(2)
testSuiteName = "ingest-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/licensemaster/lm_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "licensemaster-" + testenv.RandomDNSName(2)
testSuiteName = "lm-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/monitoring_console/monitoring_console_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "mc-" + testenv.RandomDNSName(2)
testSuiteName = "mc-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/scaling_test/scaling_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "scaling-" + testenv.RandomDNSName(2)
testSuiteName = "scaling-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/smartstore/smartstore_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "smartstore-" + testenv.RandomDNSName(2)
testSuiteName = "smartstore-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down
2 changes: 1 addition & 1 deletion test/smoke/smoke_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (

var (
testenvInstance *testenv.TestEnv
testSuiteName = "smoke-" + testenv.RandomDNSName(2)
testSuiteName = "smoke-" + testenv.RandomDNSName(3)
)

// TestBasic is the main entry point
Expand Down