Skip to content

Commit

Permalink
fixup! fixup! support tags on integration tests ESS deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
pchila committed Oct 9, 2023
1 parent 3abba04 commit 3d32209
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/testing/ess/provisioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,14 @@ func (p *provisioner) Provision(ctx context.Context, requests []runner.StackRequ
for _, r := range requests {
// allow up to 2 minutes for each create request
createCtx, createCancel := context.WithTimeout(ctx, 2*time.Minute)
resp, err := p.createDeployment(createCtx, r, map[string]string{"elastic-agent-integration-tests": "true", "team": "elastic-agent"})
resp, err := p.createDeployment(createCtx, r,
map[string]string{
"division": "engineering",
"org": "ingest",
"team": "elastic-agent",
"project": "elastic-agent",
"integration-tests": "true",
})
createCancel()
if err != nil {
return nil, err
Expand Down

0 comments on commit 3d32209

Please sign in to comment.