forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimportimage.go
508 lines (454 loc) · 16.5 KB
/
importimage.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
package importimage
import (
"fmt"
"strings"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/kubernetes/pkg/api/legacyscheme"
kapi "k8s.io/kubernetes/pkg/apis/core"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/kubectl/genericclioptions"
imageapiv1 "github.com/openshift/api/image/v1"
imageapi "github.com/openshift/origin/pkg/image/apis/image"
imageclientinternal "github.com/openshift/origin/pkg/image/generated/internalclientset"
imageclient "github.com/openshift/origin/pkg/image/generated/internalclientset/typed/image/internalversion"
"github.com/openshift/origin/pkg/oc/cli/tag"
"github.com/openshift/origin/pkg/oc/lib/describe"
)
var (
importImageLong = templates.LongDesc(`
Import the latest image information from a tag in a Docker registry
Image streams allow you to control which images are rolled out to your builds
and applications. This command fetches the latest version of an image from a
remote repository and updates the image stream tag if it does not match the
previous value. Running the command multiple times will not create duplicate
entries. When importing an image, only the image metadata is copied, not the
image contents.
If you wish to change the image stream tag or provide more advanced options,
see the 'tag' command.`)
importImageExample = templates.Examples(`
%[1]s import-image mystream
`)
)
// ImageImportOptions contains all the necessary information to perform an import.
type ImportImageOptions struct {
// user set values
From string
Confirm bool
All bool
Scheduled bool
Insecure bool
InsecureFlagProvided bool
DryRun bool
// internal values
Namespace string
Name string
Tag string
Target string
ReferencePolicy string
// helpers
imageClient imageclient.ImageInterface
isClient imageclient.ImageStreamInterface
genericclioptions.IOStreams
}
func NewImportImageOptions(name string, streams genericclioptions.IOStreams) *ImportImageOptions {
return &ImportImageOptions{
IOStreams: streams,
ReferencePolicy: tag.SourceReferencePolicy,
}
}
// NewCmdImportImage implements the OpenShift cli import-image command.
func NewCmdImportImage(fullName string, f kcmdutil.Factory, streams genericclioptions.IOStreams) *cobra.Command {
o := NewImportImageOptions(fullName, streams)
cmd := &cobra.Command{
Use: "import-image IMAGESTREAM[:TAG]",
Short: "Imports images from a Docker registry",
Long: importImageLong,
Example: fmt.Sprintf(importImageExample, fullName),
Run: func(cmd *cobra.Command, args []string) {
kcmdutil.CheckErr(o.Complete(f, cmd, args))
kcmdutil.CheckErr(o.Validate(cmd))
kcmdutil.CheckErr(o.Run())
},
}
cmd.Flags().StringVar(&o.From, "from", o.From, "A Docker image repository to import images from")
cmd.Flags().BoolVar(&o.Confirm, "confirm", o.Confirm, "If true, allow the image stream import location to be set or changed")
cmd.Flags().BoolVar(&o.All, "all", o.All, "If true, import all tags from the provided source on creation or if --from is specified")
cmd.Flags().StringVar(&o.ReferencePolicy, "reference-policy", o.ReferencePolicy, "Allow to request pullthrough for external image when set to 'local'. Defaults to 'source'.")
cmd.Flags().BoolVar(&o.DryRun, "dry-run", o.DryRun, "Fetch information about images without creating or updating an image stream.")
cmd.Flags().BoolVar(&o.Scheduled, "scheduled", o.Scheduled, "Set each imported Docker image to be periodically imported from a remote repository. Defaults to false.")
cmd.Flags().BoolVar(&o.Insecure, "insecure", o.Insecure, "If true, allow importing from registries that have invalid HTTPS certificates or are hosted via HTTP. This flag will take precedence over the insecure annotation.")
return cmd
}
// Complete turns a partially defined ImportImageOptions into a solvent structure
// which can be validated and used for aa import.
func (o *ImportImageOptions) Complete(f kcmdutil.Factory, cmd *cobra.Command, args []string) error {
if len(args) > 0 {
o.Target = args[0]
}
o.InsecureFlagProvided = cmd.Flags().Lookup("insecure").Changed
if !cmd.Flags().Lookup("reference-policy").Changed {
o.ReferencePolicy = ""
}
namespace, _, err := f.ToRawKubeConfigLoader().Namespace()
if err != nil {
return err
}
o.Namespace = namespace
clientConfig, err := f.ToRESTConfig()
if err != nil {
return err
}
client, err := imageclientinternal.NewForConfig(clientConfig)
if err != nil {
return err
}
o.imageClient = client.Image()
o.isClient = client.Image().ImageStreams(namespace)
return nil
}
// Validate ensures that a ImportImageOptions is valid and can be used to execute
// an import.
func (o *ImportImageOptions) Validate(cmd *cobra.Command) error {
if len(o.Target) == 0 {
return kcmdutil.UsageErrorf(cmd, "you must specify the name of an image stream")
}
targetRef, err := imageapi.ParseDockerImageReference(o.Target)
switch {
case err != nil:
return fmt.Errorf("the image name must be a valid Docker image pull spec or reference to an image stream (e.g. myregistry/myteam/image:tag)")
case len(targetRef.ID) > 0:
return fmt.Errorf("to import images by ID, use the 'tag' command")
case len(targetRef.Tag) != 0 && o.All:
// error out
return fmt.Errorf("cannot specify a tag %q as well as --all", o.Target)
case len(targetRef.Tag) == 0 && !o.All:
// apply the default tag
targetRef.Tag = imageapi.DefaultImageTag
}
o.Name = targetRef.Name
o.Tag = targetRef.Tag
return nil
}
// Run contains all the necessary functionality for the OpenShift cli import-image command.
func (o *ImportImageOptions) Run() error {
stream, isi, err := o.createImageImport()
if err != nil {
return err
}
result, err := o.imageClient.ImageStreamImports(isi.Namespace).Create(isi)
if err != nil {
return err
}
if o.DryRun {
if wasError(result) {
fmt.Fprintf(o.ErrOut, "The dry-run import completed with errors.\n\n")
} else {
fmt.Fprint(o.Out, "The dry-run import completed successfully.\n\n")
}
} else {
if wasError(result) {
fmt.Fprintf(o.ErrOut, "The import completed with errors.\n\n")
} else {
fmt.Fprint(o.Out, "The import completed successfully.\n\n")
}
}
if result.Status.Import != nil {
// TODO: dry-run doesn't return an image stream, so we have to display partial results
info, err := describe.DescribeImageStream(result.Status.Import)
if err != nil {
return err
}
fmt.Fprintln(o.Out, info)
}
if repo := result.Status.Repository; repo != nil {
for _, image := range repo.Images {
if image.Image != nil {
info, err := describe.DescribeImage(image.Image, imageapi.JoinImageStreamTag(stream.Name, image.Tag))
if err != nil {
fmt.Fprintf(o.ErrOut, "error: tag %s failed: %v\n", image.Tag, err)
} else {
fmt.Fprintln(o.Out, info)
}
} else {
fmt.Fprintf(o.ErrOut, "error: repository tag %s failed: %v\n", image.Tag, image.Status.Message)
}
}
}
for _, image := range result.Status.Images {
if image.Image != nil {
info, err := describe.DescribeImage(image.Image, imageapi.JoinImageStreamTag(stream.Name, image.Tag))
if err != nil {
fmt.Fprintf(o.ErrOut, "error: tag %s failed: %v\n", image.Tag, err)
} else {
fmt.Fprintln(o.Out, info)
}
} else {
fmt.Fprintf(o.ErrOut, "error: tag %s failed: %v\n", image.Tag, image.Status.Message)
}
}
if r := result.Status.Repository; r != nil && len(r.AdditionalTags) > 0 {
fmt.Fprintf(o.Out, "\ninfo: The remote repository contained %d additional tags which were not imported: %s\n", len(r.AdditionalTags), strings.Join(r.AdditionalTags, ", "))
}
return nil
}
func wasError(isi *imageapi.ImageStreamImport) bool {
for _, image := range isi.Status.Images {
if image.Status.Status == metav1.StatusFailure {
return true
}
}
if isi.Status.Repository != nil && isi.Status.Repository.Status.Status == metav1.StatusFailure {
return true
}
return false
}
// TODO: move to image/api as a helper
type importError struct {
annotation string
}
func (e importError) Error() string {
return fmt.Sprintf("unable to import image: %s", e.annotation)
}
func (o *ImportImageOptions) createImageImport() (*imageapi.ImageStream, *imageapi.ImageStreamImport, error) {
var isi *imageapi.ImageStreamImport
stream, err := o.isClient.Get(o.Name, metav1.GetOptions{})
// no stream, try creating one
if err != nil {
if !errors.IsNotFound(err) {
return nil, nil, err
}
if !o.Confirm {
return nil, nil, fmt.Errorf("no image stream named %q exists, pass --confirm to create and import", o.Name)
}
stream, isi = o.newImageStream()
// ensure defaulting is applied by round trip converting
// TODO: convert to using versioned types.
external, err := legacyscheme.Scheme.ConvertToVersion(stream, imageapiv1.SchemeGroupVersion)
if err != nil {
return nil, nil, err
}
legacyscheme.Scheme.Default(external)
internal, err := legacyscheme.Scheme.ConvertToVersion(external, imageapi.SchemeGroupVersion)
if err != nil {
return nil, nil, err
}
stream = internal.(*imageapi.ImageStream)
return stream, isi, nil
}
if o.All {
// importing the entire repository
isi, err = o.importAll(stream)
if err != nil {
return nil, nil, err
}
} else {
// importing a single tag
isi, err = o.importTag(stream)
if err != nil {
return nil, nil, err
}
}
return stream, isi, nil
}
func (o *ImportImageOptions) importAll(stream *imageapi.ImageStream) (*imageapi.ImageStreamImport, error) {
from := o.From
// update ImageStream appropriately
if len(from) == 0 {
if len(stream.Spec.DockerImageRepository) != 0 {
from = stream.Spec.DockerImageRepository
} else {
tags := make(map[string]string)
for name, tag := range stream.Spec.Tags {
if tag.From != nil && tag.From.Kind == "DockerImage" {
tags[name] = tag.From.Name
}
}
if len(tags) == 0 {
return nil, fmt.Errorf("image stream does not have tags pointing to external docker images")
}
return o.newImageStreamImportTags(stream, tags), nil
}
}
if from != stream.Spec.DockerImageRepository {
if !o.Confirm {
if len(stream.Spec.DockerImageRepository) == 0 {
return nil, fmt.Errorf("the image stream does not currently import an entire Docker repository, pass --confirm to update")
}
return nil, fmt.Errorf("the image stream has a different import spec %q, pass --confirm to update", stream.Spec.DockerImageRepository)
}
stream.Spec.DockerImageRepository = from
}
// and create accompanying ImageStreamImport
return o.newImageStreamImportAll(stream, from), nil
}
func (o *ImportImageOptions) importTag(stream *imageapi.ImageStream) (*imageapi.ImageStreamImport, error) {
from := o.From
tag := o.Tag
// follow any referential tags to the destination
finalTag, existing, multiple, err := imageapi.FollowTagReference(stream, tag)
switch err {
case imageapi.ErrInvalidReference:
return nil, fmt.Errorf("tag %q points to an invalid imagestreamtag", tag)
case imageapi.ErrCrossImageStreamReference:
return nil, fmt.Errorf("tag %q points to an imagestreamtag from another ImageStream", tag)
case imageapi.ErrCircularReference:
return nil, fmt.Errorf("tag %q on the image stream is a reference to same tag", tag)
case imageapi.ErrNotFoundReference:
// create a new tag
if len(from) == 0 && tag == imageapi.DefaultImageTag {
from = stream.Spec.DockerImageRepository
}
// if the from is still empty this means there's no such tag defined
// nor we can't create any from .spec.dockerImageRepository
if len(from) == 0 {
return nil, fmt.Errorf("the tag %q does not exist on the image stream - choose an existing tag to import or use the 'tag' command to create a new tag", tag)
}
existing = &imageapi.TagReference{
From: &kapi.ObjectReference{
Kind: "DockerImage",
Name: from,
},
}
case nil:
// disallow re-importing anything other than DockerImage
if existing.From != nil && existing.From.Kind != "DockerImage" {
return nil, fmt.Errorf("tag %q points to existing %s %q, it cannot be re-imported", tag, existing.From.Kind, existing.From.Name)
}
// disallow changing an existing tag
if existing.From == nil {
return nil, fmt.Errorf("tag %q already exists - you must use the 'tag' command if you want to change the source to %q", tag, from)
}
if len(from) != 0 && from != existing.From.Name {
if multiple {
return nil, fmt.Errorf("the tag %q points to the tag %q which points to %q - use the 'tag' command if you want to change the source to %q",
tag, finalTag, existing.From.Name, from)
}
return nil, fmt.Errorf("the tag %q points to %q - use the 'tag' command if you want to change the source to %q", tag, existing.From.Name, from)
}
// set the target item to import
from = existing.From.Name
if multiple {
tag = finalTag
}
// clear the legacy annotation
delete(existing.Annotations, imageapi.DockerImageRepositoryCheckAnnotation)
// reset the generation
zero := int64(0)
existing.Generation = &zero
}
stream.Spec.Tags[tag] = *existing
// and create accompanying ImageStreamImport
return o.newImageStreamImportTags(stream, map[string]string{tag: from}), nil
}
func (o *ImportImageOptions) newImageStream() (*imageapi.ImageStream, *imageapi.ImageStreamImport) {
from := o.From
tag := o.Tag
if len(from) == 0 {
from = o.Target
}
var (
stream *imageapi.ImageStream
isi *imageapi.ImageStreamImport
)
// create new ImageStream and accompanying ImageStreamImport
// TODO: this should be removed along with the legacy path, we don't need to
// create the IS in the new path, the import mechanism will do that for us,
// this is only for the legacy path that we need to create the IS.
if o.All {
stream = &imageapi.ImageStream{
ObjectMeta: metav1.ObjectMeta{Name: o.Name},
Spec: imageapi.ImageStreamSpec{DockerImageRepository: from},
}
isi = o.newImageStreamImportAll(stream, from)
} else {
stream = &imageapi.ImageStream{
ObjectMeta: metav1.ObjectMeta{Name: o.Name},
Spec: imageapi.ImageStreamSpec{
Tags: map[string]imageapi.TagReference{
tag: {
From: &kapi.ObjectReference{
Kind: "DockerImage",
Name: from,
},
ReferencePolicy: o.getReferencePolicy(),
},
},
},
}
isi = o.newImageStreamImportTags(stream, map[string]string{tag: from})
}
return stream, isi
}
func (o *ImportImageOptions) getReferencePolicy() imageapi.TagReferencePolicy {
ref := imageapi.TagReferencePolicy{}
if len(o.ReferencePolicy) == 0 {
return ref
}
switch o.ReferencePolicy {
case tag.SourceReferencePolicy:
ref.Type = imageapi.SourceTagReferencePolicy
case tag.LocalReferencePolicy:
ref.Type = imageapi.LocalTagReferencePolicy
}
return ref
}
func (o *ImportImageOptions) newImageStreamImport(stream *imageapi.ImageStream) (*imageapi.ImageStreamImport, bool) {
isi := &imageapi.ImageStreamImport{
ObjectMeta: metav1.ObjectMeta{
Name: stream.Name,
Namespace: o.Namespace,
ResourceVersion: stream.ResourceVersion,
},
Spec: imageapi.ImageStreamImportSpec{Import: !o.DryRun},
}
insecureAnnotation := stream.Annotations[imageapi.InsecureRepositoryAnnotation]
insecure := insecureAnnotation == "true"
// --insecure flag (if provided) takes precedence over insecure annotation
if o.InsecureFlagProvided {
insecure = o.Insecure
}
return isi, insecure
}
func (o *ImportImageOptions) newImageStreamImportAll(stream *imageapi.ImageStream, from string) *imageapi.ImageStreamImport {
isi, insecure := o.newImageStreamImport(stream)
isi.Spec.Repository = &imageapi.RepositoryImportSpec{
From: kapi.ObjectReference{
Kind: "DockerImage",
Name: from,
},
ImportPolicy: imageapi.TagImportPolicy{
Insecure: insecure,
Scheduled: o.Scheduled,
},
ReferencePolicy: o.getReferencePolicy(),
}
return isi
}
func (o *ImportImageOptions) newImageStreamImportTags(stream *imageapi.ImageStream, tags map[string]string) *imageapi.ImageStreamImport {
isi, streamInsecure := o.newImageStreamImport(stream)
for tag, from := range tags {
insecure := streamInsecure
scheduled := o.Scheduled
oldTag, ok := stream.Spec.Tags[tag]
if ok {
insecure = insecure || oldTag.ImportPolicy.Insecure
scheduled = scheduled || oldTag.ImportPolicy.Scheduled
}
isi.Spec.Images = append(isi.Spec.Images, imageapi.ImageImportSpec{
From: kapi.ObjectReference{
Kind: "DockerImage",
Name: from,
},
To: &kapi.LocalObjectReference{Name: tag},
ImportPolicy: imageapi.TagImportPolicy{
Insecure: insecure,
Scheduled: scheduled,
},
ReferencePolicy: o.getReferencePolicy(),
})
}
return isi
}