docs: warn about variable reference CLI bug and template DNS limitation#40
Open
Raymondhou0917 wants to merge 1 commit intozeabur:mainfrom
Open
docs: warn about variable reference CLI bug and template DNS limitation#40Raymondhou0917 wants to merge 1 commit intozeabur:mainfrom
Raymondhou0917 wants to merge 1 commit intozeabur:mainfrom
Conversation
…mitation
- zeabur-variables: warn that `-k` flag cannot reliably handle `${}` values
due to Cobra StringToStringVar parser (ref: zeabur/cli#201). Recommend
Dashboard or GraphQL API for cross-service variable references.
- zeabur-template-deploy: document that custom PREBUILT template YAML
services may not get internal DNS registration (ref: zeabur/cli#204).
Recommend marketplace code (`-c`) for database services. Also add
`spec` nesting requirement with correct/incorrect YAML examples.
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
Adds documentation warnings for two issues discovered during real-world usage:
zeabur-variablesskill: The-kflag cannot reliably handle values containing${}(e.g.,${POSTGRESQL.POSTGRES_CONNECTION_STRING}) due to Cobra'sStringToStringVarparser limitation. Added warning and recommendation to use Dashboard or GraphQL API. Ref: variable create --key flag cannot handle values containing ${} (Cobra StringToStringVar limitation) cli#201zeabur-template-deployskill: Custom PREBUILT template YAML services may not get internal DNS registration (*.zeabur.internal), preventing other services from connecting. Added workaround recommending marketplace code (-c) for database services. Also documented thespecnesting requirement in template YAML. Ref: template deploy / deployFromSpecification: PREBUILT services don't get internal DNS registration cli#204Changes
skills/zeabur-variables/SKILL.md— expanded Variable References section with warning and recommended approachskills/zeabur-template-deploy/SKILL.md— added Known Limitations section (DNS, YAML schema) and updated Common Issues tableCloses #39