- Join our community on Discord
Kubernetes Image Building Workflows is a repository containing the workflows used to build the Kubernetes OMIs published under the "Outscale Open-Source" account.
These OMIs are intended for use in creating Kubernetes clusters with CAPOSC.
The images are built using the Kubernetes Image Builder and are deployed on 3 regions: eu-west-2, us-east-2 and cloudgouv-eu-west-1 using the same name.
The images are produced by an open-source builder. There is no guarantee that clusters created with these images will be fully functional, and no official support is provided by Outscale.
See releases.
For each version of Kubernetes, 2 images are built: one based on Ubuntu 22.04, one based on Ubuntu 24.04.
The runc version is defined by the RUNC_VERSION variable. The containerd version is defined by the CONTAINERD_VERSION variable.
New images are built when a new tag is pushed. The tag name defines the Kubernetes version to use.
export RELEASE_TAG=v1.33.6
git tag -s ${RELEASE_TAG} -m "🔖 Kubernetes ${RELEASE_TAG}"
git push origin ${RELEASE_TAG}When re-releasing a previously released Kubernetes version, a /[some additional comment] suffix can be added to the tag, it will be ignored.
export RELEASE_TAG=v1.33.6/runc-1.2.6
git tag -s ${RELEASE_TAG} -m "🔖 Kubernetes ${RELEASE_TAG}"
git push origin ${RELEASE_TAG}Kubernetes Image Building Workflows is released under the BSD 3-Clause license.
© 2025 Outscale SAS
See LICENSE for full details.
We welcome contributions!
Please read our Contributing Guidelines and Code of Conduct before submitting a pull request.