fix(ci): preserve existing Kache config - #159
Merged
Merged
Conversation
…-kache-config-20260802
This was referenced Aug 2, 2026
jmagar
added a commit
that referenced
this pull request
Aug 7, 2026
This repository is public. Three internal identifiers were committed under .github/: * action.yml:34 default: "https://s3.tootie.tv" (PR #177) * action.yml:228 endpoint = "http://10.1.0.2:9000" (PR #159) * action.yml:233 "... via Tootie MinIO" (PR #159) * actionlint.yaml self-hosted-runner labels tootie/dookie The s3-endpoint default was never reachable. The endpoint is only consumed inside the `KACHE_S3_ACCESS_KEY && KACHE_S3_SECRET_KEY` branch, and the only caller that supplies those keys (release.yml) also passes `s3-endpoint: ${{ vars.KACHE_S3_ENDPOINT }}`. The org variable holds the real value, so nothing changes. The hardcoded 10.1.0.2 block is dead: it needs a runner with no existing ~/.config/kache/config.toml AND a ~/.aws/credentials [kache] profile. Every self-hosted job logs "existing kache config present - leaving it alone", so the branch never runs. Scrubbed to the RFC 5737 documentation address and the placeholder name already used on soma main. actionlint's tootie/dookie labels are stale: no workflow uses them; every self-hosted job routes through a ci-pool-* label.
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.
Summary
Incident
A temporary self-hosted runner on dookie rewrote
~/.config/kache/config.tomlto a 40 GiB local-only file because/home/runner/kache-remotewas absent. This guard keeps host-owned configuration intact.Validation