Skip to content

Commit

Permalink
disable cni for external servers
Browse files Browse the repository at this point in the history
  • Loading branch information
ishustava committed Oct 24, 2022
1 parent 2a33166 commit 15b09df
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions acceptance/tests/connect/connect_external_servers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ func TestConnectInject_ExternalServers(t *testing.T) {
"global.acls.manageSystemACLs": strconv.FormatBool(secure),
"global.tls.enabled": strconv.FormatBool(secure),

// This prevents controllers from being installed twice, causing a failure.
"controller.enabled": "false",
"connectInject.enabled": "false",
// Don't install injector, controller and cni on this cluster so that it's not installed twice.
"controller.enabled": "false",
"connectInject.enabled": "false",
"connectInject.cni.enabled": "false",
}
serverReleaseName := helpers.RandomName()
consulServerCluster := consul.NewHelmCluster(t, serverHelmValues, ctx, cfg, serverReleaseName)
Expand Down

0 comments on commit 15b09df

Please sign in to comment.