Documentation ¶
Index ¶
- Variables
- func MatchImageStreamTag(label labels.Selector, field fields.Selector) kstorage.SelectionPredicate
- func SelectableFields(obj *imageapi.ImageStreamTag) fields.Set
- type REST
- func (r *REST) Create(ctx apirequest.Context, obj runtime.Object, _ bool) (runtime.Object, error)
- func (r *REST) Delete(ctx apirequest.Context, id string) (runtime.Object, error)
- func (r *REST) Get(ctx apirequest.Context, id string, options *metav1.GetOptions) (runtime.Object, error)
- func (r *REST) List(ctx apirequest.Context, options *metainternal.ListOptions) (runtime.Object, error)
- func (r *REST) New() runtime.Object
- func (r *REST) NewList() runtime.Object
- func (r *REST) ShortNames() []string
- func (r *REST) Update(ctx apirequest.Context, tagName string, objInfo rest.UpdatedObjectInfo) (runtime.Object, bool, error)
Constants ¶
This section is empty.
Variables ¶
var Strategy = &strategy{ ObjectTyper: kapi.Scheme, }
Functions ¶
func MatchImageStreamTag ¶ added in v1.0.8
MatchImageStreamTag returns a generic matcher for a given label and field selector.
func SelectableFields ¶ added in v1.4.0
func SelectableFields(obj *imageapi.ImageStreamTag) fields.Set
SelectableFields returns a field set that can be used for filter selection
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST implements the RESTStorage interface for ImageStreamTag It only supports the Get method and is used to simplify retrieving an Image by tag from an ImageStream
func NewREST ¶
func NewREST(imageRegistry image.Registry, imageStreamRegistry imagestream.Registry) *REST
NewREST returns a new REST.
func (*REST) Delete ¶
Delete removes a tag from a stream. `id` is of the format <stream name>:<tag>. The associated image that the tag points to is *not* deleted. The tag history remains intact and is not deleted.
func (*REST) Get ¶
func (r *REST) Get(ctx apirequest.Context, id string, options *metav1.GetOptions) (runtime.Object, error)
Get retrieves an image that has been tagged by stream and tag. `id` is of the format <stream name>:<tag>.
func (*REST) List ¶ added in v1.0.8
func (r *REST) List(ctx apirequest.Context, options *metainternal.ListOptions) (runtime.Object, error)
func (*REST) ShortNames ¶
ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.