forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess.go
536 lines (449 loc) · 19.4 KB
/
process.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
package process
import (
"fmt"
"io"
"math/rand"
"reflect"
"strings"
"time"
"github.com/spf13/cobra"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
kerrors "k8s.io/apimachinery/pkg/util/errors"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/kubernetes/pkg/api/legacyscheme"
"k8s.io/kubernetes/pkg/kubectl"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/kubectl/genericclioptions"
"k8s.io/kubernetes/pkg/kubectl/genericclioptions/printers"
"k8s.io/kubernetes/pkg/kubectl/genericclioptions/resource"
"k8s.io/kubernetes/pkg/kubectl/scheme"
octemplateapi "github.com/openshift/api/template"
templatev1 "github.com/openshift/api/template/v1"
templatev1client "github.com/openshift/client-go/template/clientset/versioned/typed/template/v1"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/oc/lib/describe"
"github.com/openshift/origin/pkg/oc/lib/newapp/app"
"github.com/openshift/origin/pkg/oc/util/ocscheme"
templateapi "github.com/openshift/origin/pkg/template/apis/template"
templateapiv1 "github.com/openshift/origin/pkg/template/apis/template/v1"
templatevalidation "github.com/openshift/origin/pkg/template/apis/template/validation"
templateclientv1 "github.com/openshift/origin/pkg/template/client/v1"
"github.com/openshift/origin/pkg/template/generator"
"github.com/openshift/origin/pkg/template/templateprocessing"
)
var (
processLong = templates.LongDesc(`
Process template into a list of resources specified in filename or stdin
Templates allow parameterization of resources prior to being sent to the server for creation or
update. Templates have "parameters", which may either be generated on creation or set by the user,
as well as metadata describing the template.
The output of the process command is always a list of one or more resources. You may pipe the
output to the create command over STDIN (using the '-f -' option) or redirect it to a file.
Process resolves the template on the server, but you may pass --local to parameterize the template
locally. When running locally be aware that the version of your client tools will determine what
template transformations are supported, rather than the server.`)
processExample = templates.Examples(`
# Convert template.json file into resource list and pass to create
%[1]s process -f template.json | %[1]s create -f -
# Process a file locally instead of contacting the server
%[1]s process -f template.json --local -o yaml
# Process template while passing a user-defined label
%[1]s process -f template.json -l name=mytemplate
# Convert stored template into resource list
%[1]s process foo
# Convert stored template into resource list by setting/overriding parameter values
%[1]s process foo PARM1=VALUE1 PARM2=VALUE2
# Convert template stored in different namespace into a resource list
%[1]s process openshift//foo
# Convert template.json into resource list
cat template.json | %[1]s process -f -`)
)
type ProcessOptions struct {
PrintFlags *genericclioptions.PrintFlags
Printer printers.ResourcePrinter
usageErrorFn func(string, ...interface{}) error
outputFormat string
labels string
filename string
local bool
raw bool
parameters bool
ignoreUnknownParams bool
templateName string
paramFile []string
templateParams []string
namespace string
explicitNamespace bool
paramValuesProvided bool
templateClient *templatev1client.TemplateV1Client
templateProcessor func(*templatev1.Template) (*templatev1.Template, error)
builderFn func() *resource.Builder
mapper meta.RESTMapper
genericclioptions.IOStreams
}
func NewProcessOptions(streams genericclioptions.IOStreams) *ProcessOptions {
printFlags := genericclioptions.NewPrintFlags("processed").WithTypeSetter(ocscheme.PrintingInternalScheme).WithDefaultOutput("json")
// disable binding the --template flag so that we can bind our own --template flag with a shorthand (until the shorthand is deprecated)
printFlags.TemplatePrinterFlags.TemplateArgument = nil
return &ProcessOptions{
PrintFlags: printFlags,
IOStreams: streams,
}
}
// NewCmdProcess implements the OpenShift cli process command
func NewCmdProcess(fullName string, f kcmdutil.Factory, streams genericclioptions.IOStreams) *cobra.Command {
o := NewProcessOptions(streams)
cmd := &cobra.Command{
Use: "process (TEMPLATE | -f FILENAME) [-p=KEY=VALUE]",
Short: "Process a template into list of resources",
Long: processLong,
Example: fmt.Sprintf(processExample, fullName),
Run: func(cmd *cobra.Command, args []string) {
kcmdutil.CheckErr(o.Complete(f, cmd, args))
kcmdutil.CheckErr(o.Validate(cmd))
kcmdutil.CheckErr(o.RunProcess())
},
}
o.PrintFlags.AddFlags(cmd)
// edit --output flag description to mention "describe" as an acceptable output format
// TODO: add custom PrintFlags printer that does this ^
if f := cmd.Flag("output"); f != nil {
f.Usage = "Output format. One of: json|yaml|name|describe|go-template-file|templatefile|template|go-template|jsonpath|jsonpath-file."
}
// point to the original memory address shared between the jsonpath and go-template printer's TemplateArgument field
o.PrintFlags.TemplatePrinterFlags.TemplateArgument = o.PrintFlags.TemplatePrinterFlags.JSONPathPrintFlags.TemplateArgument
cmd.Flags().StringVarP(o.PrintFlags.TemplatePrinterFlags.TemplateArgument, "template", "t", *o.PrintFlags.TemplatePrinterFlags.TemplateArgument, "Template string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].")
cmd.MarkFlagFilename("template")
cmd.Flags().MarkShorthandDeprecated("template", "-t is no longer supported and will be removed in the future. Use --template instead.")
cmd.Flags().StringVarP(&o.filename, "filename", "f", o.filename, "Filename or URL to file to read a template")
cmd.MarkFlagFilename("filename", "yaml", "yml", "json")
cmd.Flags().StringArrayVarP(&o.templateParams, "param", "p", o.templateParams, "Specify a key-value pair (eg. -p FOO=BAR) to set/override a parameter value in the template.")
cmd.Flags().StringArrayVar(&o.paramFile, "param-file", o.paramFile, "File containing template parameter values to set/override in the template.")
cmd.MarkFlagFilename("param-file")
cmd.Flags().BoolVar(&o.ignoreUnknownParams, "ignore-unknown-parameters", o.ignoreUnknownParams, "If true, will not stop processing if a provided parameter does not exist in the template.")
cmd.Flags().BoolVarP(&o.local, "local", "", o.local, "If true process the template locally instead of contacting the server.")
cmd.Flags().BoolVarP(&o.parameters, "parameters", "", o.parameters, "If true, do not process but only print available parameters")
cmd.Flags().StringVarP(&o.labels, "labels", "l", o.labels, "Label to set in all resources for this template")
cmd.Flags().BoolVar(&o.raw, "raw", o.raw, "If true, output the processed template instead of the template's objects. Implied by -o describe")
cmd.Flags().String("output-version", "", "Output the formatted object with the given version (default api-version).")
cmd.Flags().MarkDeprecated("output-version", "this flag is deprecated and will be removed in the future, this flag is ignored")
return cmd
}
// processPrinter can handle printing the "describe" outputFormat
type processPrinter struct {
printFlags *genericclioptions.PrintFlags
outputFormat string
}
func (p *processPrinter) PrintObj(obj runtime.Object, out io.Writer) error {
if p.outputFormat == "describe" {
templateObj, ok := obj.(*templatev1.Template)
if !ok {
return fmt.Errorf("attempt to describe a non-template object of type %T", obj)
}
// TODO(juanvallejo): remove once we have external describers
internalTemplate := &templateapi.Template{}
if err := templateapiv1.Convert_v1_Template_To_template_Template(templateObj, internalTemplate, nil); err != nil {
return err
}
s, err := (&describe.TemplateDescriber{
MetadataAccessor: meta.NewAccessor(),
ObjectTyper: legacyscheme.Scheme,
ObjectDescriber: nil,
}).DescribeTemplate(internalTemplate)
if err != nil {
return fmt.Errorf("error describing %q: %v\n", templateObj.Name, err)
}
fmt.Fprintf(out, s)
return nil
}
printer, err := p.printFlags.ToPrinter()
if err != nil {
return err
}
return printer.PrintObj(obj, out)
}
func (o *ProcessOptions) Complete(f kcmdutil.Factory, cmd *cobra.Command, args []string) error {
o.outputFormat = kcmdutil.GetFlagString(cmd, "output")
o.Printer = &processPrinter{
printFlags: o.PrintFlags,
outputFormat: o.outputFormat,
}
o.usageErrorFn = func(format string, args ...interface{}) error {
return kcmdutil.UsageErrorf(cmd, format, args)
}
o.paramValuesProvided = cmd.Flag("param").Changed
templateName, templateParams := "", []string{}
for _, s := range args {
isValue := strings.Contains(s, "=")
switch {
case isValue:
templateParams = append(templateParams, s)
case !isValue && len(templateName) == 0:
templateName = s
case !isValue && len(templateName) > 0:
return kcmdutil.UsageErrorf(cmd, "template name must be specified only once: %s", s)
}
}
o.templateName = templateName
o.templateParams = append(o.templateParams, templateParams...)
if o.paramValuesProvided {
cmdutil.WarnAboutCommaSeparation(o.ErrOut, o.templateParams, "--param")
}
var err error
o.namespace, o.explicitNamespace, err = f.ToRawKubeConfigLoader().Namespace()
// we only need to fail on namespace acquisition if we're actually taking action. Otherwise the namespace can be enforced later
if err != nil && !o.local {
return err
}
o.builderFn = f.NewBuilder
o.templateProcessor = processTemplateLocally
if !o.local {
clientConfig, err := f.ToRESTConfig()
if err != nil {
return err
}
o.templateClient, err = templatev1client.NewForConfig(clientConfig)
if err != nil {
return err
}
templateProcessorClient := templateclientv1.NewTemplateProcessorClient(o.templateClient.RESTClient(), o.namespace)
o.templateProcessor = func(template *templatev1.Template) (*templatev1.Template, error) {
t, err := templateProcessorClient.Process(template)
if err != nil {
if err, ok := err.(*errors.StatusError); ok && err.ErrStatus.Details != nil {
errstr := "unable to process template\n"
for _, cause := range err.ErrStatus.Details.Causes {
errstr += fmt.Sprintf(" %s\n", cause.Message)
}
// if no error causes found, fallback to returning original
// error message received from the server
if len(err.ErrStatus.Details.Causes) == 0 {
errstr += fmt.Sprintf(" %v\n", err)
}
return nil, fmt.Errorf(errstr)
}
return nil, fmt.Errorf("unable to process template: %v\n", err)
}
return t, nil
}
}
return nil
}
func (o *ProcessOptions) Validate(cmd *cobra.Command) error {
if o.parameters {
for _, flag := range []string{"param", "labels", "output", "output-version", "raw", "template"} {
if f := cmd.Flags().Lookup(flag); f != nil && f.Changed {
return kcmdutil.UsageErrorf(cmd, "The --parameters flag does not process the template, can't be used with --%v", flag)
}
}
}
if len(o.templateName) > 0 && o.local {
return kcmdutil.UsageErrorf(cmd, "You may only specify a local template file via -f when running this command with --local")
}
return nil
}
// RunProcess contains all the necessary functionality for the OpenShift cli process command
func (o *ProcessOptions) RunProcess() error {
duplicatedKeys := sets.NewString()
params, paramErr := app.ParseAndCombineEnvironment(o.templateParams, o.paramFile, o.In, func(key, file string) error {
if file == "" {
duplicatedKeys.Insert(key)
} else {
fmt.Fprintf(o.ErrOut, "warning: Template parameter %q already defined, ignoring value from file %q", key, file)
}
return nil
})
if len(duplicatedKeys) != 0 {
return o.usageErrorFn(fmt.Sprintf("The following parameters were provided more than once: %s", strings.Join(duplicatedKeys.List(), ", ")))
}
if len(o.templateName) == 0 && len(o.filename) == 0 {
return o.usageErrorFn("Must pass a filename or name of stored template")
}
var infos []*resource.Info
// When templateName is not empty, then we fetch the template from the
// server, otherwise we require to set the `-f` parameter.
if len(o.templateName) > 0 && !o.local {
if o.templateClient == nil {
return fmt.Errorf("attempt to fetch template from server with nil template client")
}
var (
storedTemplate, rs string
sourceNamespace string
ok bool
)
sourceNamespace, rs, storedTemplate, ok = parseNamespaceResourceName(o.templateName, o.namespace)
if !ok {
return fmt.Errorf("invalid argument %q", o.templateName)
}
if len(rs) > 0 && (rs != "template" && rs != "templates") {
return fmt.Errorf("unable to process invalid resource %q", rs)
}
if len(storedTemplate) == 0 {
return fmt.Errorf("invalid value syntax %q", o.templateName)
}
templateObj, err := o.templateClient.Templates(sourceNamespace).Get(storedTemplate, metav1.GetOptions{})
if err != nil {
if errors.IsNotFound(err) {
return fmt.Errorf("template %q could not be found", storedTemplate)
}
return err
}
templateObj.CreationTimestamp = metav1.Now()
infos = append(infos, &resource.Info{Object: templateObj})
} else {
var err error
infos, err = o.builderFn().
WithScheme(scheme.Scheme, scheme.Scheme.PrioritizedVersionsAllGroups()...).
LocalParam(o.local).
FilenameParam(o.explicitNamespace, &resource.FilenameOptions{Recursive: false, Filenames: []string{o.filename}}).
Do().
Infos()
if err != nil {
return fmt.Errorf("failed to read input object (not a Template?): %v", err)
}
}
if len(infos) > 1 {
// in order to run validation on the input given to us by a user, we only support the processing
// of one template in a list. For instance, we want to be able to fail when a user does not give
// a parameter that the template wants or when they give a parameter the template doesn't need,
// as this may indicate that they have mis-used `oc process`. This is much less complicated when
// we process at most one template.
fmt.Fprintf(o.Out, "%d input templates found, but only the first will be processed", len(infos))
}
obj, ok := infos[0].Object.(*templatev1.Template)
if !ok {
sourceName := o.filename
if len(o.templateName) > 0 {
sourceName = o.namespace + "/" + o.templateName
}
return fmt.Errorf("unable to parse %q, not a valid Template but %s\n", sourceName, reflect.TypeOf(infos[0].Object))
}
// If 'parameters' flag is set it does not do processing but only print
// the template parameters to console for inspection.
if o.parameters {
// TODO(juanvallejo): remove once we have external describers
internalTemplate := &templateapi.Template{}
if err := templateapiv1.Convert_v1_Template_To_template_Template(obj, internalTemplate, nil); err != nil {
return err
}
return describe.PrintTemplateParameters(internalTemplate.Parameters, o.Out)
}
if label := o.labels; len(label) > 0 {
lbl, err := kubectl.ParseLabels(label)
if err != nil {
return fmt.Errorf("error parsing labels: %v\n", err)
}
if obj.ObjectLabels == nil {
obj.ObjectLabels = make(map[string]string)
}
for key, value := range lbl {
obj.ObjectLabels[key] = value
}
}
// Raise parameter parsing errors here after we had chance to return UsageErrors first
if paramErr != nil {
return paramErr
}
if errs := injectUserVars(params, obj, o.ignoreUnknownParams); errs != nil {
return kerrors.NewAggregate(errs)
}
resultObj := obj
resultObj, err := o.templateProcessor(obj)
if err != nil {
return err
}
if o.outputFormat == "describe" {
return o.Printer.PrintObj(resultObj, o.Out)
}
// attempt to convert our resulting object to external
var externalResultObj templatev1.Template
if err := ocscheme.PrintingInternalScheme.Convert(resultObj, &externalResultObj, nil); err != nil {
return fmt.Errorf("unable to convert template to external template object: %v", err)
}
// the name printer does not accept object lists, so re-use
// the print loop used for --raw printing instead.
if o.outputFormat == "name" || o.raw {
for _, obj := range externalResultObj.Objects {
objToPrint := obj.Object
if objToPrint == nil {
converted, err := runtime.Decode(unstructured.UnstructuredJSONScheme, obj.Raw)
if err != nil {
return err
}
objToPrint = converted
}
if err := o.Printer.PrintObj(objToPrint, o.Out); err != nil {
return err
}
}
return nil
}
return o.Printer.PrintObj(&corev1.List{
ListMeta: metav1.ListMeta{},
Items: externalResultObj.Objects,
}, o.Out)
}
// injectUserVars injects user specified variables into the Template
func injectUserVars(values app.Environment, t *templatev1.Template, ignoreUnknownParameters bool) []error {
var errors []error
for param, val := range values {
v := templateprocessing.GetParameterByName(t, param)
if v != nil {
v.Value = val
v.Generate = ""
} else if !ignoreUnknownParameters {
errors = append(errors, fmt.Errorf("unknown parameter name %q\n", param))
}
}
return errors
}
// processTemplateLocally applies the same logic that a remote call would make but makes no
// connection to the server.
func processTemplateLocally(tpl *templatev1.Template) (*templatev1.Template, error) {
// TODO: Create validation helpers unique to the client
// We shouldn't be using api helpers anyway
internalTemplate := &templateapi.Template{}
if err := templateapiv1.Convert_v1_Template_To_template_Template(tpl, internalTemplate, nil); err != nil {
return nil, err
}
if errs := templatevalidation.ValidateProcessedTemplate(internalTemplate); len(errs) > 0 {
return nil, errors.NewInvalid(octemplateapi.Kind("Template"), tpl.Name, errs)
}
processor := templateprocessing.NewProcessor(map[string]generator.Generator{
"expression": generator.NewExpressionValueGenerator(rand.New(rand.NewSource(time.Now().UnixNano()))),
})
if errs := processor.Process(internalTemplate); len(errs) > 0 {
return nil, errors.NewInvalid(octemplateapi.Kind("Template"), tpl.Name, errs)
}
// TODO: remove once we stop using api helpers for
// processing templates locally
externalTemplate := &templatev1.Template{}
if err := templateapiv1.Convert_template_Template_To_v1_Template(internalTemplate, externalTemplate, nil); err != nil {
return nil, err
}
return externalTemplate, nil
}
// parseNamespaceResourceName parses the value and returns namespace, resource and the
// value (resource name) itself. The valid syntax is:
// oc process mytemplate - implicit namespace (current), implicit resource (template)
// oc process template/mytemplate - implicit namespace (current), explicit resource
// oc process ns/template/mytemplate - explicit namespace, explicit resource
// oc process ns//mytemplate - explicit namespace, implicit resource (template)
func parseNamespaceResourceName(v, defaultNamespace string) (ns, resource, name string, ok bool) {
parts := strings.Split(strings.TrimSpace(v), "/")
switch len(parts) {
case 3:
return parts[0], parts[1], parts[2], true
case 2:
return defaultNamespace, parts[0], parts[1], true
case 1:
return defaultNamespace, "", parts[0], true
}
return "", "", "", false
}