Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 2.13 KB

README.md

File metadata and controls

33 lines (25 loc) · 2.13 KB

os-images

REUSE status GitHub License PRs Welcome

Overview

The os-images repository specializes in automating the release and publication of Operating System (OS) image artifacts as OCI (Open Container Initiative) images. This project streamlines the process of pushing these OS images to the project's GitHub Container Registry (ghcr.io) via GitHub Actions.

Workflow

The GitHub Actions workflow triggers on pushes to the main branch and performs the following tasks:

  • Download and Extract OS Artifact: Automates the process of downloading and extracting specified OS artifacts.
  • Prepare and Push Images with ORAS: Pushes the prepared OS images to ghcr.io, tagging each with its specific version and also as latest.

Configuration

The configuration for OS artifacts is managed through the os_image_artifacts.yml file located in the .github directory. Currently only amd64 and arm64 platforms are supported.

Example Configuration

amd64:
  gardenlinux_kvm_artifact_url: https://github.com/gardenlinux/gardenlinux/releases/download/1592.3/kvm-gardener_prod-amd64-1592.3-f64e280f.tar.xz
  gardenlinux_metal_artifact_url: https://github.com/gardenlinux/gardenlinux/releases/download/1592.3/metal-gardener_prod_pxe-amd64-1592.3-f64e280f.tar.xz
arm64:
  gardenlinux_kvm_artifact_url: https://github.com/gardenlinux/gardenlinux/releases/download/1592.3/kvm-gardener_prod-arm64-1592.3-f64e280f.tar.xz
  gardenlinux_metal_artifact_url: https://github.com/gardenlinux/gardenlinux/releases/download/1592.3/metal-gardener_prod_pxe-arm64-1592.3-f64e280f.tar.xz

Contributing

Contributions to enhance and broaden the scope of the os-images project are encouraged. Please ensure all changes are well-tested before submission.

License

This project is licensed under the Apache License 2.0.