Skip to content

Commit

Permalink
[ci] Use GCP prod image for Linux JDK matrix job (#15600)
Browse files Browse the repository at this point in the history
So far we've been using images from the -qa GCP image project throughput
the development of the Logstash Linux JDK matrix pipeline for quicker
iteration.

As we have scheduled weekly builds of those images that promote to
prod[^1] we can now switch to the prod version of the GCP images.

[^1]: https://buildkite.com/elastic/ci-vm-images/builds/2888

Relates elastic/ingest-dev#1725
  • Loading branch information
dliappis authored Nov 20, 2023
1 parent 8fa3bd0 commit e259e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/scripts/jdk-matrix-tests/generate-steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class JobRetValues:
class GCPAgent:
def __init__(self, image: str, machineType: str, diskSizeGb: int = 200, diskType: str = "pd-ssd") -> None:
self.provider = "gcp"
self.imageProject = "elastic-images-qa"
self.imageProject = "elastic-images-prod"
self.image = image
self.machineType = machineType
self.diskSizeGb = diskSizeGb
Expand Down

0 comments on commit e259e04

Please sign in to comment.