Hello, I'm using the Helm chart to deploy airbyte....
# ask-ai
a
Hello, I'm using the Helm chart to deploy airbyte. Is there a way to customize the image for
airbyte/normalization:0.4.0
? I'm using an ARM processor and I'm thinking I have to recompile something for it. The error message I get in its log is
exec /bin/sh: exec format error
k
A message from kapa.ai
Hmm, I don't know enough to give you a confident answer yet. However, you can refer to the [Airbyte documentation on deploying with Helm](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm) for more information on customizing your deployment.
a
@Adrian J You might need to either user
docker buildx
or install QEMU or possibly both.
sudo apt-get install -y qemu qemu-user-static
docker buildx build --platform linux/arm64 --no-cache -t airbyte/normalization:0.4.0 ref: https://stackoverflow.com/questions/73253352/docker-exec-bin-sh-exec-format-error-on-arm64
a
@Akilesh V Thanks, building the image is ok. I was looking at what variable to set to tell the helm chart to use the custom image.
a
@Adrian J I am also running in same issue on a EC2 machine where I am using docker-compose to bring up the service