v1alpha1

package
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 26, 2018 License: Apache-2.0 Imports: 8 Imported by: 3

Documentation

Overview

Package v1alpha1 is a generated protocol buffer package.

It is generated from these files:

k8s.io/api/imagepolicy/v1alpha1/generated.proto

It has these top-level messages:

ImageReview
ImageReviewContainerSpec
ImageReviewSpec
ImageReviewStatus

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

Types

type ImageReview

type ImageReview struct {
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Spec holds information about the pod being evaluated
	Spec *ImageReviewSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// Status is filled in by the backend and indicates whether the pod should be allowed.
	// +optional
	Status           *ImageReviewStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_unrecognized []byte             `json:"-"`
}

ImageReview checks if the set of images in a pod are allowed.

func (*ImageReview) Descriptor

func (*ImageReview) Descriptor() ([]byte, []int)

func (*ImageReview) GetMetadata

func (*ImageReview) GetSpec

func (m *ImageReview) GetSpec() *ImageReviewSpec

func (*ImageReview) GetStatus

func (m *ImageReview) GetStatus() *ImageReviewStatus

func (*ImageReview) Marshal

func (m *ImageReview) Marshal() (dAtA []byte, err error)

func (*ImageReview) MarshalTo

func (m *ImageReview) MarshalTo(dAtA []byte) (int, error)

func (*ImageReview) ProtoMessage

func (*ImageReview) ProtoMessage()

func (*ImageReview) Reset

func (m *ImageReview) Reset()

func (*ImageReview) Size

func (m *ImageReview) Size() (n int)

func (*ImageReview) String

func (m *ImageReview) String() string

func (*ImageReview) Unmarshal

func (m *ImageReview) Unmarshal(dAtA []byte) error

type ImageReviewContainerSpec

type ImageReviewContainerSpec struct {
	// This can be in the form image:tag or image@SHA:012345679abcdef.
	// +optional
	Image            *string `protobuf:"bytes,1,opt,name=image" json:"image,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ImageReviewContainerSpec is a description of a container within the pod creation request.

func (*ImageReviewContainerSpec) Descriptor

func (*ImageReviewContainerSpec) Descriptor() ([]byte, []int)

func (*ImageReviewContainerSpec) GetImage

func (m *ImageReviewContainerSpec) GetImage() string

func (*ImageReviewContainerSpec) Marshal

func (m *ImageReviewContainerSpec) Marshal() (dAtA []byte, err error)

func (*ImageReviewContainerSpec) MarshalTo

func (m *ImageReviewContainerSpec) MarshalTo(dAtA []byte) (int, error)

func (*ImageReviewContainerSpec) ProtoMessage

func (*ImageReviewContainerSpec) ProtoMessage()

func (*ImageReviewContainerSpec) Reset

func (m *ImageReviewContainerSpec) Reset()

func (*ImageReviewContainerSpec) Size

func (m *ImageReviewContainerSpec) Size() (n int)

func (*ImageReviewContainerSpec) String

func (m *ImageReviewContainerSpec) String() string

func (*ImageReviewContainerSpec) Unmarshal

func (m *ImageReviewContainerSpec) Unmarshal(dAtA []byte) error

type ImageReviewSpec

type ImageReviewSpec struct {
	// Containers is a list of a subset of the information in each container of the Pod being created.
	// +optional
	Containers []*ImageReviewContainerSpec `protobuf:"bytes,1,rep,name=containers" json:"containers,omitempty"`
	// Annotations is a list of key-value pairs extracted from the Pod's annotations.
	// It only includes keys which match the pattern `*.image-policy.k8s.io/*`.
	// It is up to each webhook backend to determine how to interpret these annotations, if at all.
	// +optional
	Annotations map[string]string `` /* 142-byte string literal not displayed */
	// Namespace is the namespace the pod is being created in.
	// +optional
	Namespace        *string `protobuf:"bytes,3,opt,name=namespace" json:"namespace,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ImageReviewSpec is a description of the pod creation request.

func (*ImageReviewSpec) Descriptor

func (*ImageReviewSpec) Descriptor() ([]byte, []int)

func (*ImageReviewSpec) GetAnnotations

func (m *ImageReviewSpec) GetAnnotations() map[string]string

func (*ImageReviewSpec) GetContainers

func (m *ImageReviewSpec) GetContainers() []*ImageReviewContainerSpec

func (*ImageReviewSpec) GetNamespace

func (m *ImageReviewSpec) GetNamespace() string

func (*ImageReviewSpec) Marshal

func (m *ImageReviewSpec) Marshal() (dAtA []byte, err error)

func (*ImageReviewSpec) MarshalTo

func (m *ImageReviewSpec) MarshalTo(dAtA []byte) (int, error)

func (*ImageReviewSpec) ProtoMessage

func (*ImageReviewSpec) ProtoMessage()

func (*ImageReviewSpec) Reset

func (m *ImageReviewSpec) Reset()

func (*ImageReviewSpec) Size

func (m *ImageReviewSpec) Size() (n int)

func (*ImageReviewSpec) String

func (m *ImageReviewSpec) String() string

func (*ImageReviewSpec) Unmarshal

func (m *ImageReviewSpec) Unmarshal(dAtA []byte) error

type ImageReviewStatus

type ImageReviewStatus struct {
	// Allowed indicates that all images were allowed to be run.
	Allowed *bool `protobuf:"varint,1,opt,name=allowed" json:"allowed,omitempty"`
	// Reason should be empty unless Allowed is false in which case it
	// may contain a short description of what is wrong.  Kubernetes
	// may truncate excessively long errors when displaying to the user.
	// +optional
	Reason           *string `protobuf:"bytes,2,opt,name=reason" json:"reason,omitempty"`
	XXX_unrecognized []byte  `json:"-"`
}

ImageReviewStatus is the result of the token authentication request.

func (*ImageReviewStatus) Descriptor

func (*ImageReviewStatus) Descriptor() ([]byte, []int)

func (*ImageReviewStatus) GetAllowed

func (m *ImageReviewStatus) GetAllowed() bool

func (*ImageReviewStatus) GetReason

func (m *ImageReviewStatus) GetReason() string

func (*ImageReviewStatus) Marshal

func (m *ImageReviewStatus) Marshal() (dAtA []byte, err error)

func (*ImageReviewStatus) MarshalTo

func (m *ImageReviewStatus) MarshalTo(dAtA []byte) (int, error)

func (*ImageReviewStatus) ProtoMessage

func (*ImageReviewStatus) ProtoMessage()

func (*ImageReviewStatus) Reset

func (m *ImageReviewStatus) Reset()

func (*ImageReviewStatus) Size

func (m *ImageReviewStatus) Size() (n int)

func (*ImageReviewStatus) String

func (m *ImageReviewStatus) String() string

func (*ImageReviewStatus) Unmarshal

func (m *ImageReviewStatus) Unmarshal(dAtA []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL