#geodesic (2023-11)
Discussions related to https://github.com/cloudposse/geodesic
Archive: https://archive.sweetops.com/geodesic/
2023-11-03
2023-11-04
2023-11-05

v2.7.3 Included Tools
Update AWS CLI packages @renovate (<a class=”issue-link js-issue-link” data-error-text=”Failed to load title” data-id=”1977117586” data-permission-text=”Title is private” data-url=”https://github.com/cloudposse/geodesic/issues/887“…
Included Tools
Update AWS CLI packages @renovate (#887) This PR contains the following updates:
Package Change Age Adoption Passing Confidence
awscli (source, changelog) ==1.29.74 -> ==…
This PR contains the following updates:
Package Change Age Adoption Passing Confidence
awscli (source, changelog) ==1.29.74 -> ==1.29.78
boto3 ==1.28.74 -> ==1.28.78
Release No…
2023-11-06
2023-11-08
2023-11-30

Hey everyone! I am very new to Atmos, geodesic and i am stuck at very first command of ‘make all’ and i am facing issue with M1 and M2 Macbook where as same commands works fine with Intel Anyone has solution for this?

what error are you seing?

did you create a Docker file with geodesic
base and Atmos installation?


# <https://github.com/cloudposse/geodesic/>
ARG GEODESIC_VERSION=2.7.3
ARG GEODESIC_OS=debian
# <https://github.com/cloudposse/atmos>
ARG ATMOS_VERSION=1.50.0
ARG TF_1_VERSION=1.5.6
FROM cloudposse/geodesic:${GEODESIC_VERSION}-${GEODESIC_OS}

Docker failed at this point

show your Dockerfile


Is this the one?

did you create a Dockerfile?

No, i have not done anything wrto docker file

Please find my docker file
ARG VERSION=latest
ARG OS=debian
ARG CLI_NAME=kkubes
ARG TF_1_VERSION=1.4.5
ARG ATMOS_VERSION=1.50.0
FROM cloudposse/geodesic:$VERSION-$OS
# Install ubuntu universe repo so we can install more helpful packages
RUN apt-get install -y software-properties-common && \
add-apt-repository "deb <http://archive.ubuntu.com/ubuntu> bionic universe" && \
gpg --keyserver <hkp://keyserver.ubuntu.com:80> --recv 3B4FE6ACC0B21F32 && \
gpg --export --armor 3B4FE6ACC0B21F32 | apt-key add - && \
apt-get update && \
apt-get install -y golang-petname
ARG TF_1_VERSION
# Install terraform.
RUN apt-get update && apt-get install -y -u --allow-downgrades \
terraform-1="${TF_1_VERSION}-*" && \
update-alternatives --set terraform /usr/share/terraform/1/bin/terraform
# Install Atmos
ARG ATMOS_VERSION
RUN apt-get install -y --allow-downgrades \
atmos="${ATMOS_VERSION}-*" \
vendir
# Geodesic message of the Day
ENV MOTD_URL=""
ENV AWS_VAULT_BACKEND=file
ENV AWS_PROFILE=tf-user-default
ENV ATMOS_BASE_PATH=/atmos
ENV DOCKER_IMAGE="kollabio/kollabkubes"
ENV DOCKER_TAG="latest"
# Geodesic banner
ENV BANNER="KollabKubes"
COPY rootfs/ /
COPY ./ /atmos
WORKDIR /

@Andriy Knysh (Cloud Posse) Please check my above file

from the error above, it looks like `
<http://archive.ubuntu.com/ubuntu> bionic universe
is not supported on ARM64 or something is wrong with it

this is not related to geodesic or Atmos, but your Dockerfile looks ok (except for that ubuntu error)

Okay i will check this Thanks