mirror of https://github.com/status-im/consul.git
integ-test: fix upgrade test for CE (#19673)
* integ-test: fix upgrade test for CE
This commit is contained in:
parent
75c2def1ca
commit
ce66433311
|
@ -406,7 +406,6 @@ jobs:
|
|||
runs-on: ${{ fromJSON(needs.setup.outputs.compute-large ) }}
|
||||
needs:
|
||||
- setup
|
||||
- dev-build
|
||||
permissions:
|
||||
id-token: write # NOTE: this permission is explicitly required for Vault auth.
|
||||
contents: read
|
||||
|
@ -445,7 +444,7 @@ jobs:
|
|||
-- \
|
||||
go test \
|
||||
-tags "${{ env.GOTAGS }}" \
|
||||
-timeout=60m \
|
||||
-timeout=20m \
|
||||
-parallel=2 \
|
||||
-json \
|
||||
./... \
|
||||
|
|
|
@ -161,12 +161,12 @@ func newCommonTopo(t *testing.T) *commonTopo {
|
|||
},
|
||||
},
|
||||
},
|
||||
Enterprise: true,
|
||||
Enterprise: utils.IsEnterprise(),
|
||||
InitialConfigEntries: []api.ConfigEntry{
|
||||
&api.ProxyConfigEntry{
|
||||
Kind: api.ProxyDefaults,
|
||||
Name: "global",
|
||||
Partition: "default",
|
||||
Partition: topoutil.ConfigEntryPartition("default"),
|
||||
Config: map[string]any{
|
||||
"protocol": "http",
|
||||
},
|
||||
|
@ -174,14 +174,12 @@ func newCommonTopo(t *testing.T) *commonTopo {
|
|||
&api.ServiceConfigEntry{
|
||||
Kind: api.ServiceDefaults,
|
||||
Name: "static-server",
|
||||
Partition: "default",
|
||||
Namespace: "default",
|
||||
Partition: topoutil.ConfigEntryPartition("default"),
|
||||
},
|
||||
&api.ServiceIntentionsConfigEntry{
|
||||
Kind: api.ServiceIntentions,
|
||||
Name: "static-server",
|
||||
Partition: "default",
|
||||
Namespace: "default",
|
||||
Partition: topoutil.ConfigEntryPartition("default"),
|
||||
Sources: []*api.SourceIntention{
|
||||
{
|
||||
Name: "static-client",
|
||||
|
|
Loading…
Reference in New Issue