Skip to content

Commit 19ad769

Browse files
authored
fix: ci failures (#815)
Signed-off-by: bitliu <[email protected]>
1 parent c59b1d5 commit 19ad769

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

e2e/profiles/ai-gateway/profile.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func (p *Profile) deployEnvoyGateway(ctx context.Context, deployer *helm.Deploye
175175
ReleaseName: "eg",
176176
Chart: "oci://docker.io/envoyproxy/gateway-helm",
177177
Namespace: "envoy-gateway-system",
178-
Version: "v0.0.0-latest",
178+
Version: "v1.6.0",
179179
ValuesFiles: []string{"https://raw.githubusercontent.com/envoyproxy/ai-gateway/main/manifests/envoy-gateway-values.yaml"},
180180
Wait: true,
181181
Timeout: "10m",
@@ -194,7 +194,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
194194
ReleaseName: "aieg-crd",
195195
Chart: "oci://docker.io/envoyproxy/ai-gateway-crds-helm",
196196
Namespace: "envoy-ai-gateway-system",
197-
Version: "v0.0.0-latest",
197+
Version: "v0.4.0",
198198
Wait: true,
199199
Timeout: "10m",
200200
}
@@ -208,7 +208,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
208208
ReleaseName: "aieg",
209209
Chart: "oci://docker.io/envoyproxy/ai-gateway-helm",
210210
Namespace: "envoy-ai-gateway-system",
211-
Version: "v0.0.0-latest",
211+
Version: "v0.4.0",
212212
Wait: true,
213213
Timeout: "10m",
214214
}

e2e/profiles/dynamic-config/profile.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func (p *Profile) deployEnvoyGateway(ctx context.Context, deployer *helm.Deploye
173173
ReleaseName: "eg",
174174
Chart: "oci://docker.io/envoyproxy/gateway-helm",
175175
Namespace: "envoy-gateway-system",
176-
Version: "v0.0.0-latest",
176+
Version: "v1.6.0",
177177
ValuesFiles: []string{"https://raw.githubusercontent.com/envoyproxy/ai-gateway/main/manifests/envoy-gateway-values.yaml"},
178178
Wait: true,
179179
Timeout: "10m",
@@ -192,7 +192,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
192192
ReleaseName: "aieg-crd",
193193
Chart: "oci://docker.io/envoyproxy/ai-gateway-crds-helm",
194194
Namespace: "envoy-ai-gateway-system",
195-
Version: "v0.0.0-latest",
195+
Version: "v0.4.0",
196196
Wait: true,
197197
Timeout: "10m",
198198
}
@@ -205,7 +205,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
205205
ReleaseName: "envoy-ai-gateway",
206206
Chart: "oci://docker.io/envoyproxy/ai-gateway-helm",
207207
Namespace: "envoy-ai-gateway-system",
208-
Version: "v0.0.0-latest",
208+
Version: "v0.4.0",
209209
Wait: true,
210210
Timeout: "10m",
211211
}

e2e/profiles/istio/profile.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ func (p *Profile) deployEnvoyGateway(ctx context.Context, deployer *helm.Deploye
395395
ReleaseName: "eg",
396396
Chart: "oci://docker.io/envoyproxy/gateway-helm",
397397
Namespace: "envoy-gateway-system",
398-
Version: "v0.0.0-latest",
398+
Version: "v1.6.0",
399399
ValuesFiles: []string{"https://raw.githubusercontent.com/envoyproxy/ai-gateway/main/manifests/envoy-gateway-values.yaml"},
400400
Wait: true,
401401
Timeout: "10m",
@@ -415,7 +415,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
415415
ReleaseName: "aieg-crd",
416416
Chart: "oci://docker.io/envoyproxy/ai-gateway-crds-helm",
417417
Namespace: "envoy-ai-gateway-system",
418-
Version: "v0.0.0-latest",
418+
Version: "v0.4.0",
419419
Wait: true,
420420
Timeout: "10m",
421421
}
@@ -429,7 +429,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
429429
ReleaseName: "aieg",
430430
Chart: "oci://docker.io/envoyproxy/ai-gateway-helm",
431431
Namespace: "envoy-ai-gateway-system",
432-
Version: "v0.0.0-latest",
432+
Version: "v0.4.0",
433433
Wait: true,
434434
Timeout: "10m",
435435
}

e2e/profiles/production-stack/profile.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ const (
4444
chartEnvoyGateway = "oci://docker.io/envoyproxy/gateway-helm"
4545
chartAIGatewayCRD = "oci://docker.io/envoyproxy/ai-gateway-crds-helm"
4646
chartAIGateway = "oci://docker.io/envoyproxy/ai-gateway-helm"
47-
chartVersion = "v0.0.0-latest"
4847
envoyGatewayValuesURL = "https://raw.githubusercontent.com/envoyproxy/ai-gateway/main/manifests/envoy-gateway-values.yaml"
4948

5049
// File path constants
@@ -232,7 +231,7 @@ func (p *Profile) deployEnvoyGateway(ctx context.Context, deployer *helm.Deploye
232231
ReleaseName: releaseEnvoyGateway,
233232
Chart: chartEnvoyGateway,
234233
Namespace: namespaceEnvoyGateway,
235-
Version: chartVersion,
234+
Version: "v1.6.0",
236235
ValuesFiles: []string{envoyGatewayValuesURL},
237236
Wait: true,
238237
Timeout: timeoutHelmInstall,
@@ -250,7 +249,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
250249
ReleaseName: releaseAIGatewayCRD,
251250
Chart: chartAIGatewayCRD,
252251
Namespace: namespaceAIGateway,
253-
Version: chartVersion,
252+
Version: "v0.4.0",
254253
Wait: true,
255254
Timeout: timeoutHelmInstall,
256255
}
@@ -263,7 +262,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
263262
ReleaseName: releaseAIGateway,
264263
Chart: chartAIGateway,
265264
Namespace: namespaceAIGateway,
266-
Version: chartVersion,
265+
Version: "v0.4.0",
267266
Wait: true,
268267
Timeout: timeoutHelmInstall,
269268
}

e2e/profiles/routing-strategies/profile.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ func (p *Profile) deployEnvoyGateway(ctx context.Context, deployer *helm.Deploye
181181
ReleaseName: "eg",
182182
Chart: "oci://docker.io/envoyproxy/gateway-helm",
183183
Namespace: "envoy-gateway-system",
184-
Version: "v0.0.0-latest",
184+
Version: "v1.6.0",
185185
ValuesFiles: []string{"https://raw.githubusercontent.com/envoyproxy/ai-gateway/main/manifests/envoy-gateway-values.yaml"},
186186
Wait: true,
187187
Timeout: "10m",
@@ -200,7 +200,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
200200
ReleaseName: "aieg-crd",
201201
Chart: "oci://docker.io/envoyproxy/ai-gateway-crds-helm",
202202
Namespace: "envoy-ai-gateway-system",
203-
Version: "v0.0.0-latest",
203+
Version: "v0.4.0",
204204
Wait: true,
205205
Timeout: "10m",
206206
}
@@ -214,7 +214,7 @@ func (p *Profile) deployEnvoyAIGateway(ctx context.Context, deployer *helm.Deplo
214214
ReleaseName: "aieg",
215215
Chart: "oci://docker.io/envoyproxy/ai-gateway-helm",
216216
Namespace: "envoy-ai-gateway-system",
217-
Version: "v0.0.0-latest",
217+
Version: "v0.4.0",
218218
Wait: true,
219219
Timeout: "10m",
220220
}

0 commit comments

Comments
 (0)