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
Allow objects to request resolution, not just images
A lot of times, you want to be able to reuse a bit of config that works
fine elsewhere. By adding the `alpha.image.policy.openshift.io/resolve-names`
annotation with value `*` to the object you can request that resolution
attempt to match all image references to an image stream tag in the
current namespace, regardless of their own policy. This makes it easy to
transition to looking up image stream tags by name.
Extend `oc set image-lookup` to accept `deploy/foo` and to be able to
list and display non image stream resources.
cmd.Flags().StringVarP(&options.Selector, "selector", "l", options.Selector, "Selector (label query) to filter on")
106
-
cmd.Flags().BoolVar(&options.All, "all", options.All, "If true, select all resources in the namespace of the specified resource types")
128
+
cmd.Flags().StringVarP(&options.Selector, "selector", "l", options.Selector, "Selector (label query) to filter on.")
129
+
cmd.Flags().BoolVar(&options.All, "all", options.All, "If true, select all resources in the namespace of the specified resource types.")
107
130
cmd.Flags().StringSliceVarP(&options.Filenames, "filename", "f", options.Filenames, "Filename, directory, or URL to file to use to edit the resource.")
108
131
109
-
cmd.Flags().BoolVar(&options.Enabled, "enabled", options.Enabled, "Mark the image stream as resolving tagged images in this namespace")
132
+
cmd.Flags().BoolVar(&options.List, "list", false, "Display the current states of the requested resources.")
133
+
cmd.Flags().BoolVar(&options.Enabled, "enabled", options.Enabled, "Mark the image stream as resolving tagged images in this namespace.")
110
134
111
135
cmd.Flags().BoolVar(&options.Local, "local", false, "If true, operations will be performed locally.")
0 commit comments