You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #16821 from miminar/image-pruning-dereference-istags
Automatic merge from submit-queue.
image-pruning: dereference ImageStreamTags
Create strong references to images for each pod/bc/dc/etc that uses `<host>/<repo>:tag` reference.
Resolves [bz#1498604](https://bugzilla.redhat.com/show_bug.cgi?id=1498604) and https://bugzilla.redhat.com/show_bug.cgi?id=1386917
Images can manually removed using `oc delete`. Image stream tags having references to these images become obsolete - we may delete them.
To be sure that we don't remove reference to image that has just been created (and we don't know about it), make sure to honor `--keep-younger-than`.
# To actually perform the prune operation, the confirm flag must be appended
@@ -111,12 +118,15 @@ type PruneImagesOptions struct {
111
118
Namespacestring
112
119
ForceInsecurebool
113
120
114
-
ClientConfig*restclient.Config
115
-
AppsClient appsclient.AppsInterface
116
-
BuildClient buildclient.BuildInterface
117
-
ImageClient imageclient.ImageInterface
118
-
KubeClient kclientset.Interface
119
-
Out io.Writer
121
+
ClientConfig*restclient.Config
122
+
AppsClient appsclient.AppsInterface
123
+
BuildClient buildclient.BuildInterface
124
+
ImageClient imageclient.ImageInterface
125
+
DiscoveryClient discovery.DiscoveryInterface
126
+
KubeClient kclientset.Interface
127
+
Timeout time.Duration
128
+
Out io.Writer
129
+
ErrOut io.Writer
120
130
}
121
131
122
132
// NewCmdPruneImages implements the OpenShift cli prune images command.
@@ -146,7 +156,7 @@ func NewCmdPruneImages(f *clientcmd.Factory, parentName, name string, out io.Wri
146
156
147
157
cmd.Flags().BoolVar(&opts.Confirm, "confirm", opts.Confirm, "If true, specify that image pruning should proceed. Defaults to false, displaying what would be deleted but not actually deleting anything. Requires a valid route to the integrated Docker registry (see --registry-url).")
148
158
cmd.Flags().BoolVar(opts.AllImages, "all", *opts.AllImages, "Include images that were imported from external registries as candidates for pruning. If pruned, all the mirrored objects associated with them will also be removed from the integrated registry.")
149
-
cmd.Flags().DurationVar(opts.KeepYoungerThan, "keep-younger-than", *opts.KeepYoungerThan, "Specify the minimum age of an image for it to be considered a candidate for pruning.")
159
+
cmd.Flags().DurationVar(opts.KeepYoungerThan, "keep-younger-than", *opts.KeepYoungerThan, "Specify the minimum age of an image and its referrers for it to be considered a candidate for pruning.")
150
160
cmd.Flags().IntVar(opts.KeepTagRevisions, "keep-tag-revisions", *opts.KeepTagRevisions, "Specify the number of image revisions for a tag in an image stream that will be preserved.")
151
161
cmd.Flags().BoolVar(opts.PruneOverSizeLimit, "prune-over-size-limit", *opts.PruneOverSizeLimit, "Specify if images which are exceeding LimitRanges (see 'openshift.io/Image'), specified in the same namespace, should be considered for pruning. This flag cannot be combined with --keep-younger-than nor --keep-tag-revisions.")
152
162
cmd.Flags().StringVar(&opts.CABundle, "certificate-authority", opts.CABundle, "The path to a certificate authority bundle to use when communicating with the managed Docker registries. Defaults to the certificate authority data from the current user's config file. It cannot be used together with --force-insecure.")
fmt.Fprintf(o.ErrOut, "Client version (%s) doesn't match master (%s), which may allow for different image references. Try to re-run this binary with the same version.\n", clientVersion, masterVersion)
444
+
}
445
+
}
446
+
}
447
+
371
448
// describingImageStreamDeleter prints information about each image stream update.
372
449
// If a delegate exists, its DeleteImageStream function is invoked prior to returning.
0 commit comments