Skip to content

Commit fd7c1b7

Browse files
committed
2025-08 upgrade continued
1 parent 2b0e233 commit fd7c1b7

File tree

20 files changed

+101
-46
lines changed

20 files changed

+101
-46
lines changed

examples/multi-runner-cppal/main.tf

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ module "base" {
7777
aws_region = local.aws_region
7878
}
7979

80-
module "runners" {
80+
# module "runners" {
81+
module "multi-runner" {
8182
source = "../../modules/multi-runner"
8283
multi_runner_config = local.multi_runner_config
8384
# Alternative to loading runner configuration from Yaml files is using static configuration:
@@ -156,14 +157,14 @@ module "runners" {
156157
# }
157158
}
158159

159-
module "webhook_github_app" {
160-
source = "../../modules/webhook-github-app"
161-
depends_on = [module.runners]
162-
163-
github_app = {
164-
key_base64 = var.github_app.key_base64
165-
id = var.github_app.id
166-
webhook_secret = random_id.random.hex
167-
}
168-
webhook_endpoint = module.runners.webhook.endpoint
169-
}
160+
# module "webhook_github_app" {
161+
# source = "../../modules/webhook-github-app"
162+
# depends_on = [module.runners]
163+
#
164+
# github_app = {
165+
# key_base64 = var.github_app.key_base64
166+
# id = var.github_app.id
167+
# webhook_secret = random_id.random.hex
168+
# }
169+
# webhook_endpoint = module.runners.webhook.endpoint
170+
# }

examples/multi-runner-cppal/templates/runner-configs/ubuntu-focal-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runner_config:
2929
# userdata_template: ./templates/user-data.sh
3030
ami:
3131
owners: [ "047402373783" ]
32-
filter: { 'name': ['github-runner-ubuntu-focal-arm64-202410151633'] }
32+
filter: { 'name': ['github-runner-ubuntu-focal-arm64-202508111835'] }
3333
block_device_mappings:
3434
- device_name: /dev/sda1
3535
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/ubuntu-focal.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runner_config:
2929
# userdata_template: ./templates/user-data.sh
3030
ami:
3131
owners: [ "047402373783" ]
32-
filter: { 'name': ['github-runner-ubuntu-focal-amd64-202411261305'] }
32+
filter: { 'name': ['github-runner-ubuntu-focal-amd64-202508112019'] }
3333
block_device_mappings:
3434
- device_name: /dev/sda1
3535
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/ubuntu-jammy-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runner_config:
3030
# userdata_template: ./templates/user-data.sh
3131
ami:
3232
owners: [ "047402373783" ]
33-
filter: { 'name': ['github-runner-ubuntu-jammy-arm64-202410151633'] }
33+
filter: { 'name': ['github-runner-ubuntu-jammy-arm64-202508112038'] }
3434
block_device_mappings:
3535
- device_name: /dev/sda1
3636
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/ubuntu-jammy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runner_config:
3030
# userdata_template: ./templates/user-data.sh
3131
ami:
3232
owners: [ "047402373783" ]
33-
filter: { 'name': ['github-runner-ubuntu-jammy-amd64-202411261305'] }
33+
filter: { 'name': ['github-runner-ubuntu-jammy-amd64-202508112038'] }
3434
block_device_mappings:
3535
- device_name: /dev/sda1
3636
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/ubuntu-noble-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runner_config:
3131
# userdata_template: ./templates/user-data.sh
3232
ami:
3333
owners: [ "047402373783" ]
34-
filter: { 'name': ['github-runner-ubuntu-noble-arm64-202410151633'] }
34+
filter: { 'name': ['github-runner-ubuntu-noble-arm64-202508111958'] }
3535
block_device_mappings:
3636
- device_name: /dev/sda1
3737
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/ubuntu-noble.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runner_config:
3131
# userdata_template: ./templates/user-data.sh
3232
ami:
3333
owners: [ "047402373783" ]
34-
filter: { 'name': ['github-runner-ubuntu-noble-amd64-202411261305'] }
34+
filter: { 'name': ['github-runner-ubuntu-noble-amd64-202508111958'] }
3535
block_device_mappings:
3636
- device_name: /dev/sda1
3737
delete_on_termination: true

examples/multi-runner-cppal/templates/runner-configs/windows-2019.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runner_config:
2424
runner_boot_time_in_minutes: 20
2525
ami:
2626
owners: [ "047402373783" ]
27-
filter: { 'name': ['github-runner-windows-2019-amd64-202503111933'] }
27+
filter: { 'name': ['github-runner-windows-2019-amd64-202508111835'] }
2828
block_device_mappings:
2929
- device_name: /dev/sda1
3030
delete_on_termination: true

images/ubuntu-bionic-arm64-cppal/github_agent.ubuntu.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ source "amazon-ebs" "githubrunner" {
131131

132132
source_ami_filter {
133133
filters = {
134-
name = "*/ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-arm64-server-*"
134+
name = "*/ubuntu-bionic-18.04-arm64-server-*"
135135
root-device-type = "ebs"
136136
virtualization-type = "hvm"
137137
}

images/ubuntu-focal-arm64-cppal/manifest.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,16 @@
4444
"artifact_id": "us-west-2:ami-0e2ba4f8eb7b40f3c",
4545
"packer_run_uuid": "a3615f9b-83d7-97f3-1e88-888483a0e6b0",
4646
"custom_data": null
47+
},
48+
{
49+
"name": "githubrunner",
50+
"builder_type": "amazon-ebs",
51+
"build_time": 1754938373,
52+
"files": null,
53+
"artifact_id": "us-west-2:ami-048452a0425888c87",
54+
"packer_run_uuid": "92a87052-8357-136b-663b-6290b64c6aee",
55+
"custom_data": null
4756
}
4857
],
49-
"last_run_uuid": "a3615f9b-83d7-97f3-1e88-888483a0e6b0"
58+
"last_run_uuid": "92a87052-8357-136b-663b-6290b64c6aee"
5059
}

0 commit comments

Comments
 (0)