Conversation
- Add regexMatch validation in configmap template to fail early if channel IDs contain scientific notation (e+/E+) - Add --set-string warning in NOTES.txt - Add --set-string comment in values.yaml Closes #43
pahud
approved these changes
Apr 6, 2026
thepagent
added a commit
that referenced
this pull request
Apr 6, 2026
This was referenced Apr 6, 2026
Reese-max
pushed a commit
to Reese-max/openab
that referenced
this pull request
Apr 12, 2026
…penabdev#64) Add fail-fast validation in configmap template to detect scientific notation in channel IDs, plus --set-string warnings in NOTES.txt and values.yaml. Closes openabdev#43
Reese-max
pushed a commit
to Reese-max/openab
that referenced
this pull request
Apr 12, 2026
Includes openabdev#62 (sender identity injection) and openabdev#64 (Helm float64 validation).
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.
Problem
Discord Snowflake IDs are 19-digit integers (> 2^53). Helm
--setparses them as float64, losing precision and rendering them in scientific notation (e.g.1.2345678901234568e+18). This causes agent-broker to silently ignore all messages.Changes
1.
templates/configmap.yaml— fail-fast validationIf a channel ID contains scientific notation,
helm install/upgradefails immediately with a clear error message instead of silently deploying a broken config.2.
templates/NOTES.txt— post-install warningShows
--set-stringusage reminder on every install/upgrade.3.
values.yaml— inline commentDocuments the
--set-stringrequirement next toallowedChannels.Before vs After
Testing
Closes #43