This message was deleted.
# puppet
s
This message was deleted.
b
do you actually want Puppet 6 or is 7/8 fine as well?
k
Note there is an answer, but I expect it to be incorrect; the fact that
<https://apt.puppet.com/puppet6-release-jammy.deb>
exists to me is a clear sign that Puppet engineers have taken the effort to support the combination of Puppet 6 and Ubuntu Jammy JellyFish
We are upgrading from Puppet 5.5, Puppet 7 / 8 should be fine too 🙂
b
but you're on ARM
I only see AMD64 packages
k
Yes, I’m running from Apple M1 Docker host. Is that the issue?
b
yes
different CPU architecture
k
Aha thanks. I’m trying to run docker-container then with amd64 arch. Changed in Dockerfile:
FROM ubuntu:jammy
to
FROM --platform=linux/amd64 ubuntu:jammy
Now trying it out 🙂
b
I'm not sure if that works at all on ARM
but then it's MacOS and no real docker anyways
k
Yeah, I understand now. Still trying it out, should maybe be possible with x86 compatibility mode of M1?
b
I'm not sure how Apple implemented that
y
arm64 native package of puppet 7 is available for Ubuntu 20.04 just in case
In theory it’s possible to run an x86_64 container on arm64 linux vm but you need qemu as a binary translation layer
I’m not aware of better ways