From 3d322099612c56b62429241b2c0eff1698a77786 Mon Sep 17 00:00:00 2001 From: Paolo Chila Date: Mon, 9 Oct 2023 08:55:58 +0200 Subject: [PATCH] fixup! fixup! support tags on integration tests ESS deployments --- pkg/testing/ess/provisioner.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkg/testing/ess/provisioner.go b/pkg/testing/ess/provisioner.go index b309fdf9b66..081b4100869 100644 --- a/pkg/testing/ess/provisioner.go +++ b/pkg/testing/ess/provisioner.go @@ -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