-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove ${}
in favor of $()
syntax
#1170
Milestone
Comments
bobcatfish
added
the
maybe-next-milestone
For consideration when planning the next milestone
label
Aug 6, 2019
Note that we should also update the catalog when we do this since after this change the catalog would no longer work with HEAD. |
bobcatfish
removed
the
maybe-next-milestone
For consideration when planning the next milestone
label
Sep 6, 2019
bobcatfish
added a commit
to bobcatfish/pipeline
that referenced
this issue
Sep 14, 2019
In tektoncd#850 we decided that to make our syntax more similar to k8s style syntax, we will use $() for variable substitution instead of ${}. In a later iteration we may also want to make it so that anything that can be acesssed as a variable is also available as an env var to the running container, but that is TBD. In tektoncd#1172 we added support for the new syntax, $(), and continued support for ${}, which was released in 0.6. This commit removes support for ${}. Fixes tektoncd#1170
tekton-robot
pushed a commit
that referenced
this issue
Sep 16, 2019
In #850 we decided that to make our syntax more similar to k8s style syntax, we will use $() for variable substitution instead of ${}. In a later iteration we may also want to make it so that anything that can be acesssed as a variable is also available as an env var to the running container, but that is TBD. In #1172 we added support for the new syntax, $(), and continued support for ${}, which was released in 0.6. This commit removes support for ${}. Fixes #1170
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In #850 we updated Tekton to support both
${somevariable}
and$(somevariable)
syntax for variable replacement. The goal is to remove the${}
synxtax in favor of$()
but in a backward compatible way. This issue is to track completely removing support for${}
in a later release.The text was updated successfully, but these errors were encountered: