Skip to content

Commit

Permalink
test(e2e): also apply Kuma deploy envs with Helm (#11503)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Beaumont <mjboamail@gmail.com>
  • Loading branch information
michaelbeaumont authored Sep 20, 2024
1 parent 89a010f commit 7118669
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/framework/k8s_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,10 @@ func (c *K8sCluster) genValues(mode string) map[string]string {
values["controlPlane.logLevel"] = "debug"
}

for key, value := range c.opts.env {
values[fmt.Sprintf("controlPlane.envVars.%s", key)] = value
}

switch mode {
case core.Global:
if !Config.UseLoadBalancer {
Expand Down

0 comments on commit 7118669

Please sign in to comment.