const ( // ImpersonateUserHeader is used to impersonate a particular user during an API server request ImpersonateUserHeader = "Impersonate-User" // ImpersonateGroupHeader is used to impersonate a particular group during an API server request. // It can be repeated multiplied times for multiple groups. ImpersonateGroupHeader = "Impersonate-Group" // ImpersonateUIDHeader is used to impersonate a particular UID during an API server request ImpersonateUIDHeader = "Impersonate-Uid" // ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the // extra map[string][]string for user.Info. The key will be every after the prefix. // It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple // times to have multiple elements in the slice under a single key ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-" )
GroupName is the group name use in this package
const GroupName = "authentication.k8s.io"
var ( ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGenerated = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group") )
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = localSchemeBuilder.AddToScheme )
SchemeGroupVersion is group version used to register these objects
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
BoundObjectReference is a reference to an object that a token is bound to.
type BoundObjectReference struct { // Kind of the referent. Valid kinds are 'Pod' and 'Secret'. // +optional Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"` // API version of the referent. // +optional APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,2,opt,name=apiVersion"` // Name of the referent. // +optional Name string `json:"name,omitempty" protobuf:"bytes,3,opt,name=name"` // UID of the referent. // +optional UID types.UID `json:"uid,omitempty" protobuf:"bytes,4,opt,name=uID,casttype=k8s.io/apimachinery/pkg/types.UID"` }
func (in *BoundObjectReference) DeepCopy() *BoundObjectReference
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BoundObjectReference.
func (in *BoundObjectReference) DeepCopyInto(out *BoundObjectReference)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BoundObjectReference) Descriptor() ([]byte, []int)
func (m *BoundObjectReference) Marshal() (dAtA []byte, err error)
func (m *BoundObjectReference) MarshalTo(dAtA []byte) (int, error)
func (m *BoundObjectReference) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*BoundObjectReference) ProtoMessage()
func (m *BoundObjectReference) Reset()
func (m *BoundObjectReference) Size() (n int)
func (this *BoundObjectReference) String() string
func (BoundObjectReference) SwaggerDoc() map[string]string
func (m *BoundObjectReference) Unmarshal(dAtA []byte) error
func (m *BoundObjectReference) XXX_DiscardUnknown()
func (m *BoundObjectReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *BoundObjectReference) XXX_Merge(src proto.Message)
func (m *BoundObjectReference) XXX_Size() int
func (m *BoundObjectReference) XXX_Unmarshal(b []byte) error
ExtraValue masks the value so protobuf can generate +protobuf.nullable=true +protobuf.options.(gogoproto.goproto_stringer)=false
type ExtraValue []string
func (in ExtraValue) DeepCopy() ExtraValue
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtraValue.
func (in ExtraValue) DeepCopyInto(out *ExtraValue)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ExtraValue) Descriptor() ([]byte, []int)
func (m ExtraValue) Marshal() (dAtA []byte, err error)
func (m ExtraValue) MarshalTo(dAtA []byte) (int, error)
func (m ExtraValue) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*ExtraValue) ProtoMessage()
func (m *ExtraValue) Reset()
func (m ExtraValue) Size() (n int)
func (t ExtraValue) String() string
func (m *ExtraValue) Unmarshal(dAtA []byte) error
func (m *ExtraValue) XXX_DiscardUnknown()
func (m *ExtraValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *ExtraValue) XXX_Merge(src proto.Message)
func (m *ExtraValue) XXX_Size() int
func (m *ExtraValue) XXX_Unmarshal(b []byte) error
SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
type SelfSubjectReview struct { metav1.TypeMeta `json:",inline"` // Standard object's metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` // Status is filled in by the server with the user attributes. Status SelfSubjectReviewStatus `json:"status,omitempty" protobuf:"bytes,2,opt,name=status"` }
func (in *SelfSubjectReview) DeepCopy() *SelfSubjectReview
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectReview.
func (in *SelfSubjectReview) DeepCopyInto(out *SelfSubjectReview)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SelfSubjectReview) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SelfSubjectReview) Descriptor() ([]byte, []int)
func (m *SelfSubjectReview) Marshal() (dAtA []byte, err error)
func (m *SelfSubjectReview) MarshalTo(dAtA []byte) (int, error)
func (m *SelfSubjectReview) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*SelfSubjectReview) ProtoMessage()
func (m *SelfSubjectReview) Reset()
func (m *SelfSubjectReview) Size() (n int)
func (this *SelfSubjectReview) String() string
func (SelfSubjectReview) SwaggerDoc() map[string]string
func (m *SelfSubjectReview) Unmarshal(dAtA []byte) error
func (m *SelfSubjectReview) XXX_DiscardUnknown()
func (m *SelfSubjectReview) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *SelfSubjectReview) XXX_Merge(src proto.Message)
func (m *SelfSubjectReview) XXX_Size() int
func (m *SelfSubjectReview) XXX_Unmarshal(b []byte) error
SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
type SelfSubjectReviewStatus struct { // User attributes of the user making this request. // +optional UserInfo UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"` }
func (in *SelfSubjectReviewStatus) DeepCopy() *SelfSubjectReviewStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectReviewStatus.
func (in *SelfSubjectReviewStatus) DeepCopyInto(out *SelfSubjectReviewStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SelfSubjectReviewStatus) Descriptor() ([]byte, []int)
func (m *SelfSubjectReviewStatus) Marshal() (dAtA []byte, err error)
func (m *SelfSubjectReviewStatus) MarshalTo(dAtA []byte) (int, error)
func (m *SelfSubjectReviewStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*SelfSubjectReviewStatus) ProtoMessage()
func (m *SelfSubjectReviewStatus) Reset()
func (m *SelfSubjectReviewStatus) Size() (n int)
func (this *SelfSubjectReviewStatus) String() string
func (SelfSubjectReviewStatus) SwaggerDoc() map[string]string
func (m *SelfSubjectReviewStatus) Unmarshal(dAtA []byte) error
func (m *SelfSubjectReviewStatus) XXX_DiscardUnknown()
func (m *SelfSubjectReviewStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *SelfSubjectReviewStatus) XXX_Merge(src proto.Message)
func (m *SelfSubjectReviewStatus) XXX_Size() int
func (m *SelfSubjectReviewStatus) XXX_Unmarshal(b []byte) error
TokenRequest requests a token for a given service account.
type TokenRequest struct { metav1.TypeMeta `json:",inline"` // Standard object's metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` // Spec holds information about the request being evaluated Spec TokenRequestSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"` // Status is filled in by the server and indicates whether the token can be authenticated. // +optional Status TokenRequestStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"` }
func (in *TokenRequest) DeepCopy() *TokenRequest
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenRequest.
func (in *TokenRequest) DeepCopyInto(out *TokenRequest)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TokenRequest) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*TokenRequest) Descriptor() ([]byte, []int)
func (m *TokenRequest) Marshal() (dAtA []byte, err error)
func (m *TokenRequest) MarshalTo(dAtA []byte) (int, error)
func (m *TokenRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenRequest) ProtoMessage()
func (m *TokenRequest) Reset()
func (m *TokenRequest) Size() (n int)
func (this *TokenRequest) String() string
func (TokenRequest) SwaggerDoc() map[string]string
func (m *TokenRequest) Unmarshal(dAtA []byte) error
func (m *TokenRequest) XXX_DiscardUnknown()
func (m *TokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenRequest) XXX_Merge(src proto.Message)
func (m *TokenRequest) XXX_Size() int
func (m *TokenRequest) XXX_Unmarshal(b []byte) error
TokenRequestSpec contains client provided parameters of a token request.
type TokenRequestSpec struct { // Audiences are the intendend audiences of the token. A recipient of a // token must identify themself with an identifier in the list of // audiences of the token, and otherwise should reject the token. A // token issued for multiple audiences may be used to authenticate // against any of the audiences listed but implies a high degree of // trust between the target audiences. // +listType=atomic Audiences []string `json:"audiences" protobuf:"bytes,1,rep,name=audiences"` // ExpirationSeconds is the requested duration of validity of the request. The // token issuer may return a token with a different validity duration so a // client needs to check the 'expiration' field in a response. // +optional ExpirationSeconds *int64 `json:"expirationSeconds" protobuf:"varint,4,opt,name=expirationSeconds"` // BoundObjectRef is a reference to an object that the token will be bound to. // The token will only be valid for as long as the bound object exists. // NOTE: The API server's TokenReview endpoint will validate the // BoundObjectRef, but other audiences may not. Keep ExpirationSeconds // small if you want prompt revocation. // +optional BoundObjectRef *BoundObjectReference `json:"boundObjectRef" protobuf:"bytes,3,opt,name=boundObjectRef"` }
func (in *TokenRequestSpec) DeepCopy() *TokenRequestSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenRequestSpec.
func (in *TokenRequestSpec) DeepCopyInto(out *TokenRequestSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TokenRequestSpec) Descriptor() ([]byte, []int)
func (m *TokenRequestSpec) Marshal() (dAtA []byte, err error)
func (m *TokenRequestSpec) MarshalTo(dAtA []byte) (int, error)
func (m *TokenRequestSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenRequestSpec) ProtoMessage()
func (m *TokenRequestSpec) Reset()
func (m *TokenRequestSpec) Size() (n int)
func (this *TokenRequestSpec) String() string
func (TokenRequestSpec) SwaggerDoc() map[string]string
func (m *TokenRequestSpec) Unmarshal(dAtA []byte) error
func (m *TokenRequestSpec) XXX_DiscardUnknown()
func (m *TokenRequestSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenRequestSpec) XXX_Merge(src proto.Message)
func (m *TokenRequestSpec) XXX_Size() int
func (m *TokenRequestSpec) XXX_Unmarshal(b []byte) error
TokenRequestStatus is the result of a token request.
type TokenRequestStatus struct { // Token is the opaque bearer token. Token string `json:"token" protobuf:"bytes,1,opt,name=token"` // ExpirationTimestamp is the time of expiration of the returned token. ExpirationTimestamp metav1.Time `json:"expirationTimestamp" protobuf:"bytes,2,opt,name=expirationTimestamp"` }
func (in *TokenRequestStatus) DeepCopy() *TokenRequestStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenRequestStatus.
func (in *TokenRequestStatus) DeepCopyInto(out *TokenRequestStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TokenRequestStatus) Descriptor() ([]byte, []int)
func (m *TokenRequestStatus) Marshal() (dAtA []byte, err error)
func (m *TokenRequestStatus) MarshalTo(dAtA []byte) (int, error)
func (m *TokenRequestStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenRequestStatus) ProtoMessage()
func (m *TokenRequestStatus) Reset()
func (m *TokenRequestStatus) Size() (n int)
func (this *TokenRequestStatus) String() string
func (TokenRequestStatus) SwaggerDoc() map[string]string
func (m *TokenRequestStatus) Unmarshal(dAtA []byte) error
func (m *TokenRequestStatus) XXX_DiscardUnknown()
func (m *TokenRequestStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenRequestStatus) XXX_Merge(src proto.Message)
func (m *TokenRequestStatus) XXX_Size() int
func (m *TokenRequestStatus) XXX_Unmarshal(b []byte) error
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
type TokenReview struct { metav1.TypeMeta `json:",inline"` // Standard object's metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` // Spec holds information about the request being evaluated Spec TokenReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"` // Status is filled in by the server and indicates whether the request can be authenticated. // +optional Status TokenReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"` }
func (in *TokenReview) DeepCopy() *TokenReview
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenReview.
func (in *TokenReview) DeepCopyInto(out *TokenReview)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TokenReview) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*TokenReview) Descriptor() ([]byte, []int)
func (m *TokenReview) Marshal() (dAtA []byte, err error)
func (m *TokenReview) MarshalTo(dAtA []byte) (int, error)
func (m *TokenReview) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenReview) ProtoMessage()
func (m *TokenReview) Reset()
func (m *TokenReview) Size() (n int)
func (this *TokenReview) String() string
func (TokenReview) SwaggerDoc() map[string]string
func (m *TokenReview) Unmarshal(dAtA []byte) error
func (m *TokenReview) XXX_DiscardUnknown()
func (m *TokenReview) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenReview) XXX_Merge(src proto.Message)
func (m *TokenReview) XXX_Size() int
func (m *TokenReview) XXX_Unmarshal(b []byte) error
TokenReviewSpec is a description of the token authentication request.
type TokenReviewSpec struct { // Token is the opaque bearer token. // +optional Token string `json:"token,omitempty" protobuf:"bytes,1,opt,name=token"` // Audiences is a list of the identifiers that the resource server presented // with the token identifies as. Audience-aware token authenticators will // verify that the token was intended for at least one of the audiences in // this list. If no audiences are provided, the audience will default to the // audience of the Kubernetes apiserver. // +optional // +listType=atomic Audiences []string `json:"audiences,omitempty" protobuf:"bytes,2,rep,name=audiences"` }
func (in *TokenReviewSpec) DeepCopy() *TokenReviewSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenReviewSpec.
func (in *TokenReviewSpec) DeepCopyInto(out *TokenReviewSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TokenReviewSpec) Descriptor() ([]byte, []int)
func (m *TokenReviewSpec) Marshal() (dAtA []byte, err error)
func (m *TokenReviewSpec) MarshalTo(dAtA []byte) (int, error)
func (m *TokenReviewSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenReviewSpec) ProtoMessage()
func (m *TokenReviewSpec) Reset()
func (m *TokenReviewSpec) Size() (n int)
func (this *TokenReviewSpec) String() string
func (TokenReviewSpec) SwaggerDoc() map[string]string
func (m *TokenReviewSpec) Unmarshal(dAtA []byte) error
func (m *TokenReviewSpec) XXX_DiscardUnknown()
func (m *TokenReviewSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenReviewSpec) XXX_Merge(src proto.Message)
func (m *TokenReviewSpec) XXX_Size() int
func (m *TokenReviewSpec) XXX_Unmarshal(b []byte) error
TokenReviewStatus is the result of the token authentication request.
type TokenReviewStatus struct { // Authenticated indicates that the token was associated with a known user. // +optional Authenticated bool `json:"authenticated,omitempty" protobuf:"varint,1,opt,name=authenticated"` // User is the UserInfo associated with the provided token. // +optional User UserInfo `json:"user,omitempty" protobuf:"bytes,2,opt,name=user"` // Audiences are audience identifiers chosen by the authenticator that are // compatible with both the TokenReview and token. An identifier is any // identifier in the intersection of the TokenReviewSpec audiences and the // token's audiences. A client of the TokenReview API that sets the // spec.audiences field should validate that a compatible audience identifier // is returned in the status.audiences field to ensure that the TokenReview // server is audience aware. If a TokenReview returns an empty // status.audience field where status.authenticated is "true", the token is // valid against the audience of the Kubernetes API server. // +optional // +listType=atomic Audiences []string `json:"audiences,omitempty" protobuf:"bytes,4,rep,name=audiences"` // Error indicates that the token couldn't be checked // +optional Error string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"` }
func (in *TokenReviewStatus) DeepCopy() *TokenReviewStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenReviewStatus.
func (in *TokenReviewStatus) DeepCopyInto(out *TokenReviewStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TokenReviewStatus) Descriptor() ([]byte, []int)
func (m *TokenReviewStatus) Marshal() (dAtA []byte, err error)
func (m *TokenReviewStatus) MarshalTo(dAtA []byte) (int, error)
func (m *TokenReviewStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*TokenReviewStatus) ProtoMessage()
func (m *TokenReviewStatus) Reset()
func (m *TokenReviewStatus) Size() (n int)
func (this *TokenReviewStatus) String() string
func (TokenReviewStatus) SwaggerDoc() map[string]string
func (m *TokenReviewStatus) Unmarshal(dAtA []byte) error
func (m *TokenReviewStatus) XXX_DiscardUnknown()
func (m *TokenReviewStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *TokenReviewStatus) XXX_Merge(src proto.Message)
func (m *TokenReviewStatus) XXX_Size() int
func (m *TokenReviewStatus) XXX_Unmarshal(b []byte) error
UserInfo holds the information about the user needed to implement the user.Info interface.
type UserInfo struct { // The name that uniquely identifies this user among all active users. // +optional Username string `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"` // A unique value that identifies this user across time. If this user is // deleted and another user by the same name is added, they will have // different UIDs. // +optional UID string `json:"uid,omitempty" protobuf:"bytes,2,opt,name=uid"` // The names of groups this user is a part of. // +optional // +listType=atomic Groups []string `json:"groups,omitempty" protobuf:"bytes,3,rep,name=groups"` // Any additional information provided by the authenticator. // +optional Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,4,rep,name=extra"` }
func (in *UserInfo) DeepCopy() *UserInfo
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
func (in *UserInfo) DeepCopyInto(out *UserInfo)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*UserInfo) Descriptor() ([]byte, []int)
func (m *UserInfo) Marshal() (dAtA []byte, err error)
func (m *UserInfo) MarshalTo(dAtA []byte) (int, error)
func (m *UserInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*UserInfo) ProtoMessage()
func (m *UserInfo) Reset()
func (m *UserInfo) Size() (n int)
func (this *UserInfo) String() string
func (UserInfo) SwaggerDoc() map[string]string
func (m *UserInfo) Unmarshal(dAtA []byte) error
func (m *UserInfo) XXX_DiscardUnknown()
func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *UserInfo) XXX_Merge(src proto.Message)
func (m *UserInfo) XXX_Size() int
func (m *UserInfo) XXX_Unmarshal(b []byte) error