-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Template doesn't support ${{ }} #959
Comments
This issue has been automatically marked as stale because it has not had any activity since 90 days. It will be closed if no further activity occurs within 7 days. Thank you for your contributions! |
Latest release still has this issue, no matter what I use Version:
my template snippet:
|
This is a pretty big issue. The entire point of using templates is that they can be parameterized, and the client library needs to support that. The issue is twofold: the parsing code assumes only a single curly brace, and it always assumes the value of the interpolation will be a string. |
@noamichael : Hi, Thanks for noticing. I can prioritize it for 4.7.0 if you can give me some test cases which are reproducing this, and what use cases in template context are still unsupported. |
This issue has been automatically marked as stale because it has not had any activity since 90 days. It will be closed if no further activity occurs within 7 days. Thank you for your contributions! |
A Template has a number parameter
PORT
. If i use it with${{PORT}}
, the kubernetes client doesn't support. But When i use it with${PORT}
, it success.The text was updated successfully, but these errors were encountered: