Skip to content

Commit 15e6c31

Browse files
[static] init
Signed-off-by: Julien Tinguely <julien.tinguely@digitalasset.com>
1 parent defae5d commit 15e6c31

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

cluster/expected/infra/expected.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1557,7 +1557,7 @@
15571557
"chart": "gateway",
15581558
"compat": "true",
15591559
"maxHistory": 10,
1560-
"name": "istio-ingress-cometbft",
1560+
"name": "istio-ingress-cometbft-test",
15611561
"namespace": "cluster-ingress",
15621562
"repositoryOpts": {
15631563
"repo": "https://istio-release.storage.googleapis.com/charts"
@@ -1579,6 +1579,9 @@
15791579
}
15801580
}
15811581
},
1582+
"annotations": {
1583+
"cloud.google.com/l4-rbs": "enabled"
1584+
},
15821585
"autoscaling": {
15831586
"maxReplicas": 15
15841587
},
@@ -1735,7 +1738,7 @@
17351738
"chart": "gateway",
17361739
"compat": "true",
17371740
"maxHistory": 10,
1738-
"name": "istio-ingress",
1741+
"name": "istio-ingress-test",
17391742
"namespace": "cluster-ingress",
17401743
"repositoryOpts": {
17411744
"repo": "https://istio-release.storage.googleapis.com/charts"
@@ -1757,6 +1760,9 @@
17571760
}
17581761
}
17591762
},
1763+
"annotations": {
1764+
"cloud.google.com/l4-rbs": "enabled"
1765+
},
17601766
"autoscaling": {
17611767
"maxReplicas": 15
17621768
},

cluster/pulumi/infra/src/istio.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ function configureGatewayService(
320320
const gateway = new k8s.helm.v3.Release(
321321
`istio-ingress${suffix}`,
322322
{
323-
name: `istio-ingress${suffix}`,
323+
name: `istio-ingress${suffix}-test`,
324324
chart: 'gateway',
325325
version: istioVersion.istio,
326326
namespace: ingressNs.metadata.name,
@@ -359,10 +359,14 @@ function configureGatewayService(
359359
].concat(ingressPorts),
360360
},
361361
...infraAffinityAndTolerations,
362+
annotations: {
363+
'cloud.google.com/l4-rbs': 'enabled',
364+
},
362365
},
363366
maxHistory: HELM_MAX_HISTORY_SIZE,
364367
},
365368
{
369+
deleteBeforeReplace: true,
366370
dependsOn: istioPolicies
367371
? istioPolicies.apply(policies => {
368372
const base: pulumi.Resource[] = [ingressNs, istiod];

0 commit comments

Comments
 (0)