15 messages
Discussions related to https://github.com/cloudposse/geodesic
Archive: https://archive.sweetops.com/geodesic/
rssabout 2 years ago(edited)
v2.8.5
π§° Included Tools
Update AWS CLI packages @renovate (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2116147343" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/909"...
π§° Included Tools
Update AWS CLI packages @renovate (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2116147343" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/909"...
E-Loveabout 2 years ago
Curious if anyone's used #geodesic with dev containers? It feels like this could be a good match for SweetOps-style repos!
Venkat Sunil Minchalaabout 2 years ago
Hello team,
I have published an article on "Infrastructure Automation with Geodesic: DevOps Magic in One Click.". I would like to get your feedback.
https://medium.com/@venkatsunilm/infrastructure-automation-with-geodesic-your-devops-toolbox-made-easy-486ba9784596
I have published an article on "Infrastructure Automation with Geodesic: DevOps Magic in One Click.". I would like to get your feedback.
https://medium.com/@venkatsunilm/infrastructure-automation-with-geodesic-your-devops-toolbox-made-easy-486ba9784596
Jeremy G (Cloud Posse)about 2 years ago
@Matt Gowie I'm looking through old Geodesic issues and had some question about this one you opened. Please respond here or on the issue. Preferably on the issue if you are OK with closing it, or here if you want some back-and-forth on designing the feature.
rssabout 2 years ago(edited)
v2.8.7
ποΈ Build/Release Maintenance
Add OCI annotations @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2129224491" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/917"...
ποΈ Build/Release Maintenance
Add OCI annotations @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2129224491" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/917"...
rssabout 2 years ago(edited)
v2.9.0 Update to Debian 12.4 from 11.8
π Enhancements
Update to Debian 12.4 and other updates @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2131401462" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/918"...
π Enhancements
Update to Debian 12.4 and other updates @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2131401462" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/918"...
Erik Osterman (Cloud Posse)about 2 years ago
@Hans D βοΈ
rssabout 2 years ago(edited)
v2.9.0 Update to Debian 12.4 from 11.8 (minor breaking change)
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had /bin, /sbin, or /lib subdirectories under rootfs/. Previous versions of Geodesic did have a rootfs/sbin directory which contained a single file, docker, which was a script that...
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had /bin, /sbin, or /lib subdirectories under rootfs/. Previous versions of Geodesic did have a rootfs/sbin directory which contained a single file, docker, which was a script that...
rssabout 2 years ago(edited)
v2.9.0 Update to Debian 12.4 from 11.8 (minor breaking change)
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. This can break certain customizations you may be making in your Dockerfile for your custom image, and can also affect Spacelift users.
If you are making a customized version of Geodesic
Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had...
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. This can break certain customizations you may be making in your Dockerfile for your custom image, and can also affect Spacelift users.
If you are making a customized version of Geodesic
Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had...
rssabout 2 years ago(edited)
v2.9.1
π§° Included Tools
Update dependency cryptography to v42.0.3 @renovate (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2137845612" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/919"...
π§° Included Tools
Update dependency cryptography to v42.0.3 @renovate (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2137845612" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/919"...
Michaelabout 2 years ago(edited)
I know that Geodesic tends to lean more into the AWS landscape, but would yβall consider offering some GCP PS1 prompt support for GCP accounts like:
`function role_name() {
local role_name
# Could be a primary or assumed role. If we have assumed a role, cut off the session name.
local current_role=$(gcloud auth list --filter=status:ACTIVE --format="value(account)" 2>/dev/null | cut -d '@' -f1)
if [[ -z $current_role ]]; then
unset ASSUME_ROLE
return 0
fi
export ASSUME_ROLE="$current_role"
}
role_name`
Looking to incorporate Geodesic into our toolbox @Jeremy G (Cloud Posse)
`function role_name() {
local role_name
# Could be a primary or assumed role. If we have assumed a role, cut off the session name.
local current_role=$(gcloud auth list --filter=status:ACTIVE --format="value(account)" 2>/dev/null | cut -d '@' -f1)
if [[ -z $current_role ]]; then
unset ASSUME_ROLE
return 0
fi
export ASSUME_ROLE="$current_role"
}
role_name`
Looking to incorporate Geodesic into our toolbox @Jeremy G (Cloud Posse)
Matt Gowiealmost 2 years ago
When using Geodesic, I get these errors all the time whenever I start up a new shell and do a terraform init or atmos command:
Is there a suggested way of dealing with this? I'm adding
Could not download module "account" (providers.mixin.tf:13) source code from "git::https://github.com/cloudposse/terraform-yaml-stack-config?ref=0.22.3": error
β downloading 'https://github.com/cloudposse/terraform-yaml-stack-config?ref=0.22.3': /usr/bin/git exited with 128: fatal: detected dubious ownership in repository at
β To add an exception for this directory, call:
β
β git config --global --add safe.directory /blahblahblah
Is there a suggested way of dealing with this? I'm adding
git config --global --add safe.directory \* to my ~/.geodesic/overrides.d/main.sh but wondering if there is a better avenue there.rssalmost 2 years ago(edited)
v2.9.0 Update to Debian 12.4 from 11.8 (minor breaking change)
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. This can break certain customizations you may be making in your Dockerfile for your custom image, and can also affect Spacelift users.
If you are making a customized version of Geodesic
Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had...
In this release we upgrade from Debian 11 (buster) to Debian 12 (bookworm). This introduces a minor breaking change.
Debian 12 has symbolic links for /bin, /sbin, and /lib pointing to /usr/bin, /usr/sbin, and /usr/lib respectively. This can break certain customizations you may be making in your Dockerfile for your custom image, and can also affect Spacelift users.
If you are making a customized version of Geodesic
Previously, the Dockerfile command:
COPY rootfs/ /
worked fine even if you had...
rssalmost 2 years ago(edited)
v2.9.2
π Enhancements
Fix aws CLI auto-completions, use smaller kubectl package @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2150745434" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/924"...
π Enhancements
Fix aws CLI auto-completions, use smaller kubectl package @Nuru (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2150745434" data-permission-text="Title is private" data-url="https://github.com/cloudposse/geodesic/issues/924"...