-
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
How to pass separate template files to oc process? #21190
Comments
It's not a bug, that's how this was originally written, though I agree we should allow multiple, changing to enhancement. |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Just bumping this, this would be very useful. Something like a -R flag could be useful, for example for processing multiple templates at once and using the same param-file |
@adambkaplan fyi |
/reopen |
@mhtgrwl5: You can't reopen an issue/PR unless you authored it or you are a collaborator. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
When I
oc process -f template.yaml
I would like to split my different objects into several files such asservice.yaml
,route.yaml
,deploymentconfig.yaml
. Basically I should be able to do something likeoc process -f service.yaml -f route.yaml
This is how Kubernetes does it. But when I do it withoc process
I get only one of the templates outputted. Is this not possible inoc
?Version
Steps To Reproduce
oc process -f deploymentconfig.yaml -f service.yaml
Current Result
Only one of the resources is outputted
Expected Result
A complete list of the resources inputted
Additional Information
N/A
The text was updated successfully, but these errors were encountered: