Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support ubuntu 22.04 for gcp images #1245

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/gcp-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
os:
- "ubuntu 20.04"
- "ubuntu 18.04"
- "ubuntu 12.04"
supershal marked this conversation as resolved.
Show resolved Hide resolved
buildConfig:
- "basic"
runs-on:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-gcp-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
include:
- os: "ubuntu 20.04"
buildConfig: "basic"
- os: "ubuntu 22.04"
buildConfig: "basic"
runs-on:
- self-hosted
- medium
Expand Down
13 changes: 13 additions & 0 deletions images/gcp/ubuntu-2204.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
build_name: "ubuntu-2204"
packer_builder_type: "googlecompute"
python_path: ""
packer:
# The source image to use to create the new image from. source_image = `distribution`-`distribution_version-k8sversion-timestamp`
distribution: "ubuntu"
distribution_version: "2204-jammy-v20241218"
source_image: "ubuntu-2204-jammy-v20241218"
# The source_image_family to use to create the new image from.
distribution_family: "ubuntu-2204-lts"
# The username to connect to SSH with. Required if using SSH.
ssh_username: "ubuntu"
Loading