Conversation
Agent-Logs-Url: https://github.com/cloudengine-labs/devops_os/sessions/9b0c799a-f3ea-4137-ae78-1b58c5743fb7 Co-authored-by: chefgs <7605658+chefgs@users.noreply.github.com>
Agent-Logs-Url: https://github.com/cloudengine-labs/devops_os/sessions/9b0c799a-f3ea-4137-ae78-1b58c5743fb7 Co-authored-by: chefgs <7605658+chefgs@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
chefgs
April 15, 2026 10:49
View session
- Bump Python to 3.12, Java to 21, Node.js to 22, and Go to 1.25.0. - Upgrade Nexus to 3.91.0, Prometheus to 3.5.1, Grafana to 12.4.2, K9s to 0.50.16, ArgoCD to 3.3.6, Flux to 2.8.5, and Kustomize to 5.8.0. - Modify configuration files (.devcontainer/README.md, configure.py, devcontainer.env.json, devcontainer.json) to reflect new versions. - Update CLI options in devopsos.py and scaffold_devcontainer.py to use the latest versions as defaults.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Devcontainer builds failed in the Go install layer when
GO_VERSIONwas set to a major.minor value (for example,1.21), because the Dockerfile attempted to fetch a non-existent tarball name. This change makes Go version resolution robust for both short and fully-qualified version inputs.Version normalization
GO_DOWNLOAD_VERSIONin the Go install step.major.minorinput tomajor.minor.0(e.g.,1.21→1.21.0).Download path hardening
go.dev/dlwith explicit tarball naming derived from normalized version.Fail-fast integrity guard
test -s) before extraction to avoid opaque tar extraction failures on bad/empty downloads.