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
Prune images no longer needed due to age and/or status
16
+
Remove image stream tags, images, and image layers by age or usage
17
+
18
+
.PP
19
+
This command removes historical image stream tags, unused images, and unreferenced image layers from the integrated registry. It prefers images that have been directly pushed to the registry, but you may specify \-\-all to include images that were imported (if registry mirroring is enabled).
17
20
18
21
.PP
19
22
By default, the prune operation performs a dry run making no changes to internal registry. A \-\-confirm flag is needed for changes to be effective.
@@ -23,6 +26,10 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
23
26
24
27
25
28
.SH OPTIONS
29
+
.PP
30
+
\fB\-\-all\fP=false
31
+
Include images that were not pushed to the registry but have been mirrored by pullthrough. Requires \-\-registry\-url
32
+
26
33
.PP
27
34
\fB\-\-certificate\-authority\fP=""
28
35
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.
@@ -127,7 +134,7 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
Prune images no longer needed due to age and/or status
16
+
Remove image stream tags, images, and image layers by age or usage
17
+
18
+
.PP
19
+
This command removes historical image stream tags, unused images, and unreferenced image layers from the integrated registry. It prefers images that have been directly pushed to the registry, but you may specify \-\-all to include images that were imported (if registry mirroring is enabled).
17
20
18
21
.PP
19
22
By default, the prune operation performs a dry run making no changes to internal registry. A \-\-confirm flag is needed for changes to be effective.
@@ -23,6 +26,10 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
23
26
24
27
25
28
.SH OPTIONS
29
+
.PP
30
+
\fB\-\-all\fP=false
31
+
Include images that were not pushed to the registry but have been mirrored by pullthrough. Requires \-\-registry\-url
32
+
26
33
.PP
27
34
\fB\-\-certificate\-authority\fP=""
28
35
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.
@@ -127,7 +134,7 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
Prune images no longer needed due to age and/or status
16
+
Remove image stream tags, images, and image layers by age or usage
17
+
18
+
.PP
19
+
This command removes historical image stream tags, unused images, and unreferenced image layers from the integrated registry. It prefers images that have been directly pushed to the registry, but you may specify \-\-all to include images that were imported (if registry mirroring is enabled).
17
20
18
21
.PP
19
22
By default, the prune operation performs a dry run making no changes to internal registry. A \-\-confirm flag is needed for changes to be effective.
@@ -23,6 +26,10 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
23
26
24
27
25
28
.SH OPTIONS
29
+
.PP
30
+
\fB\-\-all\fP=false
31
+
Include images that were not pushed to the registry but have been mirrored by pullthrough. Requires \-\-registry\-url
32
+
26
33
.PP
27
34
\fB\-\-certificate\-authority\fP=""
28
35
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.
@@ -127,7 +134,7 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
Prune images no longer needed due to age and/or status
16
+
Remove image stream tags, images, and image layers by age or usage
17
+
18
+
.PP
19
+
This command removes historical image stream tags, unused images, and unreferenced image layers from the integrated registry. It prefers images that have been directly pushed to the registry, but you may specify \-\-all to include images that were imported (if registry mirroring is enabled).
17
20
18
21
.PP
19
22
By default, the prune operation performs a dry run making no changes to internal registry. A \-\-confirm flag is needed for changes to be effective.
@@ -23,6 +26,10 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
23
26
24
27
25
28
.SH OPTIONS
29
+
.PP
30
+
\fB\-\-all\fP=false
31
+
Include images that were not pushed to the registry but have been mirrored by pullthrough. Requires \-\-registry\-url
32
+
26
33
.PP
27
34
\fB\-\-certificate\-authority\fP=""
28
35
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.
@@ -127,7 +134,7 @@ Only a user with a cluster role system:image\-pruner or higher who is logged\-in
@@ -104,6 +112,7 @@ func NewCmdPruneImages(f *clientcmd.Factory, parentName, name string, out io.Wri
104
112
}
105
113
106
114
cmd.Flags().BoolVar(&opts.Confirm, "confirm", opts.Confirm, "Specify that image pruning should proceed. Defaults to false, displaying what would be deleted but not actually deleting anything.")
115
+
cmd.Flags().BoolVar(opts.AllImages, "all", *opts.AllImages, "Include images that were not pushed to the registry but have been mirrored by pullthrough. Requires --registry-url")
107
116
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.")
108
117
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.")
109
118
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.")
0 commit comments