https://github.com/fardjad/keel-multi-arch
Automated Keel Multi-Arch Image Builder
https://github.com/fardjad/keel-multi-arch
docker-image k8s keel
Last synced: 12 months ago
JSON representation
Automated Keel Multi-Arch Image Builder
- Host: GitHub
- URL: https://github.com/fardjad/keel-multi-arch
- Owner: fardjad
- License: mit
- Created: 2023-12-16T15:20:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T15:10:29.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T10:43:36.317Z (about 1 year ago)
- Topics: docker-image, k8s, keel
- Homepage: https://hub.docker.com/repository/docker/fardjad/keel
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Keel Multi-Arch Image Builder
## Synopsis
Currently, there are [no official up-to-date](https://hub.docker.com/r/keelhq/keel-arm) arm64 Docker images available for [Keel](https://keel.sh). That makes it cumbersome to run Keel on aarch64 machines. This repository contains an [automated workflow](https://github.com/fardjad/keel-multi-arch/blob/main/.github/workflows/build-and-push.yml) that checks for new releases of Keel every day. Upon detecting a new release, the workflow builds a multi-architecture Docker image for both amd64 and arm64 architectures and pushes it to DockerHub under the repository [fardjad/keel](https://hub.docker.com/repository/docker/fardjad/keel).
## Usage with the Official Helm Chart
You can use this image with the official Helm chart by overriding the `image.repository` value:
```bash
helm repo add keel https://charts.keel.sh
helm repo update
helm upgrade --install \
keel keel/keel \
--namespace=kube-system \
--set helmProvider.version="v3" \
--set image.repository=fardjad/keel
```