Re: Creating from a template: get parameters from a file

2016-06-25 Thread Clayton Coleman
Let's get an issue opened and we'll do a sweep (to stop using string slice) for any opaque values. On Jun 25, 2016, at 5:24 PM, Ben Parees wrote: On Fri, Jun 24, 2016 at 7:53 PM, Clayton Coleman wrote: > If new-app -p is splitting on comma we need to fix that. I'm willing to > break backwar

Re: Creating from a template: get parameters from a file

2016-06-25 Thread Ben Parees
On Fri, Jun 24, 2016 at 7:53 PM, Clayton Coleman wrote: > If new-app -p is splitting on comma we need to fix that. I'm willing to > break backwards compatibility on new-app because this is a functionality > blocker. Process will be there for people who need the more complex flow. > ​near as i

Re: Creating from a template: get parameters from a file

2016-06-24 Thread Clayton Coleman
If new-app -p is splitting on comma we need to fix that. I'm willing to break backwards compatibility on new-app because this is a functionality blocker. Process will be there for people who need the more complex flow. On Thu, Jun 23, 2016 at 3:54 PM, Luke Meyer wrote: > `oc process -v` and `o

Re: Creating from a template: get parameters from a file

2016-06-23 Thread Luke Meyer
`oc process -v` and `oc new-app -p` work exactly the same, both being implemented the same. You can specify multiple of either. I thought there was supposed to be a way to escape commas but I can't find it now. FWIW you can specify newlines - anything, really, except a comma - in parameters. Howe

Re: Creating from a template: get parameters from a file

2016-06-20 Thread Ben Parees
On Fri, Jun 17, 2016 at 3:07 PM, Clayton Coleman wrote: > The -v flag needs to be fixed for sure (splitting flag values is bad). > > New-app should support both -f FILE and -p (which you can specify multiple > -p, one for each param). > - ​f is already used to indicate "instantiate the template

Re: Creating from a template: get parameters from a file

2016-06-20 Thread Alex Wauck
Oh, I hadn't thought of that. I guess a solution for that would be necessary after all. Maybe have some special syntax to indicate that the value should be read from a file? At any rate, a simple key=value file will suffice for my needs. On Mon, Jun 20, 2016 at 9:17 AM, Jordan Liggitt wrote:

Re: Creating from a template: get parameters from a file

2016-06-20 Thread Jordan Liggitt
if you have the content of a cert file as a param, that will typically contain newlines On Mon, Jun 20, 2016 at 10:13 AM, Alex Wauck wrote: > We do not have any parameters that require newlines, thankfully. In my > opinion, that would be kind of insane. > > new-app isn't a great solution, since

Re: Creating from a template: get parameters from a file

2016-06-20 Thread Alex Wauck
We do not have any parameters that require newlines, thankfully. In my opinion, that would be kind of insane. new-app isn't a great solution, since the template is intended to set up our entire environment with multiple apps (some apps share parameters). Or current work-around is a Python script

Re: Creating from a template: get parameters from a file

2016-06-17 Thread Clayton Coleman
The -v flag needs to be fixed for sure (splitting flag values is bad). New-app should support both -f FILE and -p (which you can specify multiple -p, one for each param). Do you have any templates that require new lines? On Jun 17, 2016, at 5:55 PM, Alex Wauck wrote: I need to create services

Creating from a template: get parameters from a file

2016-06-17 Thread Alex Wauck
I need to create services from a template that has a lot of parameters. In addition to having a lot of parameters, it has parameters with values containing commas, which does not play well with the -v flag for oc process. Is there any way to make oc process get the parameter values from a file?