Documentation ¶
Index ¶
- Constants
- Variables
- func Convert_credentialprovider_AuthConfig_To_v1_AuthConfig(in *credentialprovider.AuthConfig, out *AuthConfig, s conversion.Scope) error
- func Convert_credentialprovider_CredentialProviderRequest_To_v1_CredentialProviderRequest(in *credentialprovider.CredentialProviderRequest, ...) error
- func Convert_credentialprovider_CredentialProviderResponse_To_v1_CredentialProviderResponse(in *credentialprovider.CredentialProviderResponse, ...) error
- func Convert_v1_AuthConfig_To_credentialprovider_AuthConfig(in *AuthConfig, out *credentialprovider.AuthConfig, s conversion.Scope) error
- func Convert_v1_CredentialProviderRequest_To_credentialprovider_CredentialProviderRequest(in *CredentialProviderRequest, ...) error
- func Convert_v1_CredentialProviderResponse_To_credentialprovider_CredentialProviderResponse(in *CredentialProviderResponse, ...) error
- func RegisterConversions(s *runtime.Scheme) error
- func RegisterDefaults(scheme *runtime.Scheme) error
- type AuthConfig
- type CredentialProviderRequest
- type CredentialProviderResponse
- type PluginCacheKeyType
Constants ¶
const GroupName = "credentialprovider.kubelet.k8s.io"
GroupName is the group name use in this package
Variables ¶
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = SchemeBuilder.AddToScheme )
var (
SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
)
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Convert_credentialprovider_AuthConfig_To_v1_AuthConfig ¶
func Convert_credentialprovider_AuthConfig_To_v1_AuthConfig(in *credentialprovider.AuthConfig, out *AuthConfig, s conversion.Scope) error
Convert_credentialprovider_AuthConfig_To_v1_AuthConfig is an autogenerated conversion function.
func Convert_credentialprovider_CredentialProviderRequest_To_v1_CredentialProviderRequest ¶
func Convert_credentialprovider_CredentialProviderRequest_To_v1_CredentialProviderRequest(in *credentialprovider.CredentialProviderRequest, out *CredentialProviderRequest, s conversion.Scope) error
Convert_credentialprovider_CredentialProviderRequest_To_v1_CredentialProviderRequest is an autogenerated conversion function.
func Convert_credentialprovider_CredentialProviderResponse_To_v1_CredentialProviderResponse ¶
func Convert_credentialprovider_CredentialProviderResponse_To_v1_CredentialProviderResponse(in *credentialprovider.CredentialProviderResponse, out *CredentialProviderResponse, s conversion.Scope) error
Convert_credentialprovider_CredentialProviderResponse_To_v1_CredentialProviderResponse is an autogenerated conversion function.
func Convert_v1_AuthConfig_To_credentialprovider_AuthConfig ¶
func Convert_v1_AuthConfig_To_credentialprovider_AuthConfig(in *AuthConfig, out *credentialprovider.AuthConfig, s conversion.Scope) error
Convert_v1_AuthConfig_To_credentialprovider_AuthConfig is an autogenerated conversion function.
func Convert_v1_CredentialProviderRequest_To_credentialprovider_CredentialProviderRequest ¶
func Convert_v1_CredentialProviderRequest_To_credentialprovider_CredentialProviderRequest(in *CredentialProviderRequest, out *credentialprovider.CredentialProviderRequest, s conversion.Scope) error
Convert_v1_CredentialProviderRequest_To_credentialprovider_CredentialProviderRequest is an autogenerated conversion function.
func Convert_v1_CredentialProviderResponse_To_credentialprovider_CredentialProviderResponse ¶
func Convert_v1_CredentialProviderResponse_To_credentialprovider_CredentialProviderResponse(in *CredentialProviderResponse, out *credentialprovider.CredentialProviderResponse, s conversion.Scope) error
Convert_v1_CredentialProviderResponse_To_credentialprovider_CredentialProviderResponse is an autogenerated conversion function.
func RegisterConversions ¶
RegisterConversions adds conversion functions to the given scheme. Public to allow building arbitrary schemes.
func RegisterDefaults ¶
RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.
Types ¶
type AuthConfig ¶
type AuthConfig struct { // username is the username used for authenticating to the container registry // An empty username is valid. Username string `json:"username"` // password is the password used for authenticating to the container registry // An empty password is valid. Password string `json:"password"` }
AuthConfig contains authentication information for a container registry. Only username/password based authentication is supported today, but more authentication mechanisms may be added in the future.
func (*AuthConfig) DeepCopy ¶
func (in *AuthConfig) DeepCopy() *AuthConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthConfig.
func (*AuthConfig) DeepCopyInto ¶
func (in *AuthConfig) DeepCopyInto(out *AuthConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CredentialProviderRequest ¶
type CredentialProviderRequest struct { metav1.TypeMeta `json:",inline"` // image is the container image that is being pulled as part of the // credential provider plugin request. Plugins may optionally parse the image // to extract any information required to fetch credentials. Image string `json:"image"` }
CredentialProviderRequest includes the image that the kubelet requires authentication for. Kubelet will pass this request object to the plugin via stdin. In general, plugins should prefer responding with the same apiVersion they were sent.
func (*CredentialProviderRequest) DeepCopy ¶
func (in *CredentialProviderRequest) DeepCopy() *CredentialProviderRequest
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderRequest.
func (*CredentialProviderRequest) DeepCopyInto ¶
func (in *CredentialProviderRequest) DeepCopyInto(out *CredentialProviderRequest)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CredentialProviderRequest) DeepCopyObject ¶
func (in *CredentialProviderRequest) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CredentialProviderResponse ¶
type CredentialProviderResponse struct { metav1.TypeMeta `json:",inline"` // cacheKeyType indiciates the type of caching key to use based on the image provided // in the request. There are three valid values for the cache key type: Image, Registry, and // Global. If an invalid value is specified, the response will NOT be used by the kubelet. CacheKeyType PluginCacheKeyType `json:"cacheKeyType"` // cacheDuration indicates the duration the provided credentials should be cached for. // The kubelet will use this field to set the in-memory cache duration for credentials // in the AuthConfig. If null, the kubelet will use defaultCacheDuration provided in // CredentialProviderConfig. If set to 0, the kubelet will not cache the provided AuthConfig. // +optional CacheDuration *metav1.Duration `json:"cacheDuration,omitempty"` // auth is a map containing authentication information passed into the kubelet. // Each key is a match image string (more on this below). The corresponding authConfig value // should be valid for all images that match against this key. A plugin should set // this field to null if no valid credentials can be returned for the requested image. // // Each key in the map is a pattern which can optionally contain a port and a path. // Globs can be used in the domain, but not in the port or the path. Globs are supported // as subdomains like '*.k8s.io' or 'k8s.*.io', and top-level-domains such as 'k8s.*'. // Matching partial subdomains like 'app*.k8s.io' is also supported. Each glob can only match // a single subdomain segment, so *.io does not match *.k8s.io. // // The kubelet will match images against the key when all of the below are true: // - Both contain the same number of domain parts and each part matches. // - The URL path of an imageMatch must be a prefix of the target image URL path. // - If the imageMatch contains a port, then the port must match in the image as well. // // When multiple keys are returned, the kubelet will traverse all keys in reverse order so that: // - longer keys come before shorter keys with the same prefix // - non-wildcard keys come before wildcard keys with the same prefix. // // For any given match, the kubelet will attempt an image pull with the provided credentials, // stopping after the first successfully authenticated pull. // // Example keys: // - 123456789.dkr.ecr.us-east-1.amazonaws.com // - *.azurecr.io // - gcr.io // - *.*.registry.io // - registry.io:8080/path // +optional Auth map[string]AuthConfig `json:"auth,omitempty"` }
CredentialProviderResponse holds credentials that the kubelet should use for the specified image provided in the original request. Kubelet will read the response from the plugin via stdout. This response should be set to the same apiVersion as CredentialProviderRequest.
func (*CredentialProviderResponse) DeepCopy ¶
func (in *CredentialProviderResponse) DeepCopy() *CredentialProviderResponse
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderResponse.
func (*CredentialProviderResponse) DeepCopyInto ¶
func (in *CredentialProviderResponse) DeepCopyInto(out *CredentialProviderResponse)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CredentialProviderResponse) DeepCopyObject ¶
func (in *CredentialProviderResponse) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PluginCacheKeyType ¶
type PluginCacheKeyType string
const ( // ImagePluginCacheKeyType means the kubelet will cache credentials on a per-image basis, // using the image passed from the kubelet directly as the cache key. This includes // the registry domain, port (if specified), and path but does not include tags or SHAs. ImagePluginCacheKeyType PluginCacheKeyType = "Image" // RegistryPluginCacheKeyType means the kubelet will cache credentials on a per-registry basis. // The cache key will be based on the registry domain and port (if present) parsed from the requested image. RegistryPluginCacheKeyType PluginCacheKeyType = "Registry" // GlobalPluginCacheKeyType means the kubelet will cache credentials for all images that // match for a given plugin. This cache key should only be returned by plugins that do not use // the image input at all. GlobalPluginCacheKeyType PluginCacheKeyType = "Global" )