Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ~/.aws symlink #959

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions os/debian/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# https://hub.docker.com/_/debian
# We use codename (bookworm) instead of version number (12) because we want to select
# the matching Python Docker image, which is named after the codename only.
# bookworm-20240722 corresponds to Debian 12.6
# bookworm-20241016 corresponds to Debian 12.7
ARG DEBIAN_CODENAME=bookworm
# Debian codenamed images are tagged with date codes rather than minor version numbers.
ARG DEBAIN_DATECODE=20240812
ARG DEBAIN_DATECODE=20241016
# Find the current version of Python at https://www.python.org/downloads/source/
ARG PYTHON_VERSION=3.12.5
ARG PYTHON_VERSION=3.12.7

# https://github.com/ahmetb/kubectx/releases
ARG KUBECTX_COMPLETION_VERSION=0.9.5
Expand All @@ -18,7 +18,7 @@ ARG SESSION_MANAGER_PLUGIN_VERSION=latest

# Helm plugins:
# https://github.com/databus23/helm-diff/releases
ARG HELM_DIFF_VERSION=3.9.9
ARG HELM_DIFF_VERSION=3.9.11
# https://github.com/aslafy-z/helm-git/releases
ARG HELM_GIT_VERSION=1.3.0

Expand Down
1 change: 1 addition & 0 deletions rootfs/etc/profile.d/aws.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ if [ ! -e "${HOME}/.aws" ]; then
fi
chmod 700 ${GEODESIC_AWS_HOME}
fi
ln -s "${GEODESIC_AWS_HOME}" "${HOME}/.aws"
fi

if [ ! -f "${AWS_CONFIG_FILE:=${GEODESIC_AWS_HOME}/config}" ] && [ -d ${GEODESIC_AWS_HOME} ]; then
Expand Down