-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
document namespace stripping behavior of oc process #3840
Comments
i'll look at it later, but i think your description is wrong. multiple substitution definitely works, our samples all use it for db password. I suspect there's an issue w/ substitution into the ResourceQuota api object. have you confirmed if you use a value instead of a parameter, that the value doesn't get eaten? |
You are correct, it gets eaten. The namespace comes back cleanly from a straight get of the template ( |
@bparees this line is responsible and makes it impossible for me to create a template where I substitute in the value of two different namespaces to modify two projects at the same time. https://github.com/openshift/origin/blob/master/pkg/template/template.go#L56 |
discussed with @deads2k, this is working correctly but we should do some doc so the behavior is better understood. and comment the "stripNames" line in the code. |
to clarify further: namespace stripping is required since objects are going to get created in the namespace you are running the create (instantiate of template) in. |
I'm tempted to fix this. It's annoying. The original arguments were for a more limited namespace case, but templates are generally useful for many things. |
@smarterclayton so instantiating a template could create objects across multiple namespaces, where objects would by default go into the current namespace, but if a namespace was specified on the object they'd go there instead? that's probably a backwards incompatible change since today we just strip the namespace if your template objects happen to have one. |
Probably would only be safe if we kept namespaces that had a replacement
value (namespace: ${FOO} is not accidental).
I did a quick scrape of github and about 1/30 templates in source code had
namespaces on their objects. So not safe without some affordance.
On Feb 3, 2017, at 7:33 PM, Ben Parees <[email protected]> wrote:
@smarterclayton <https://github.com/smarterclayton> so instantiating a
template could create objects across multiple namespaces, where objects
would by default go into the current namespace, but if a namespace was
specified on the object they'd go there instead? that's probably a
backwards incompatible change since today we just strip the namespace if
your template objects happen to have one.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3840 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p6K3qwUEtp402dOUm2m_3M38KKc3ks5rY8dRgaJpZM4FdwbS>
.
|
So this would require:
|
They should be doing 2 anyway. Another option is to add a cluster template config endpoint (outside of the namespace scope). It would not strip namespace. We actually probably want one of these anyway. We'd have to figure out how to decide whether to use it. |
fixed in #12918 |
I created a template that used
${PROJECT_NAME}
multiple times, but it only got substituted once. See the output below@bparees who should have this?
@thoraxe fyi
The text was updated successfully, but these errors were encountered: