Documentation ¶
Index ¶
- Constants
- Variables
- func ResolveRequest(ctx context.Context, kubeClientSet kubernetes.Interface, ...) (framework.ResolvedResource, error)
- func ValidateParams(ctx context.Context, params []v1.Param) error
- type RequestOptions
- type ResolvedResource
- type Resolverdeprecated
- func (r *Resolver) GetConfigName(context.Context) string
- func (r *Resolver) GetName(context.Context) string
- func (r *Resolver) GetSelector(context.Context) map[string]string
- func (r *Resolver) Initialize(ctx context.Context) error
- func (r *Resolver) Resolve(ctx context.Context, params []v1.Param) (framework.ResolvedResource, error)
- func (r *Resolver) ValidateParams(ctx context.Context, params []v1.Param) error
Constants ¶
const ( // BundleAnnotationKind is the image layer annotation used to indicate // the "kind" of resource stored in a given layer. BundleAnnotationKind = "dev.tekton.image.kind" // BundleAnnotationName is the image layer annotation used to indicate // the "name" of resource stored in a given layer. BundleAnnotationName = "dev.tekton.image.name" // BundleAnnotationAPIVersion is the image layer annotation used to // indicate the "apiVersion" of resource stored in a given layer. BundleAnnotationAPIVersion = "dev.tekton.image.apiVersion" )
const ( // ConfigMapName is the bundle resolver's config map ConfigMapName = "bundleresolver-config" // ConfigServiceAccount is the configuration field name for controlling // the Service Account name to use for bundle requests. ConfigServiceAccount = "default-service-account" // ConfigKind is the configuration field name for controlling // what the layer name in the bundle image is. ConfigKind = "default-kind" )
const ( // LabelValueBundleResolverType is the value to use for the // resolution.tekton.dev/type label on resource requests LabelValueBundleResolverType string = "bundles" // BundleResolverName is the name that the bundle resolver should be associated with. BundleResolverName = "bundleresolver" )
const (
// MaximumBundleObjects defines the maximum number of objects in a bundle
MaximumBundleObjects = 20
)
const ParamBundle = "bundle"
ParamBundle is the parameter defining what the bundle image url is.
const ParamImagePullSecret = "secret"
ParamImagePullSecret is the parameter defining what secret name to use for bundle requests.
const ParamKind = "kind"
ParamKind is the parameter defining what the layer kind in the bundle image is.
const ParamName = resource.ParamName
ParamName is the parameter defining what the layer name in the bundle image is.
const ParamServiceAccount = "serviceAccount"
ParamServiceAccount is the parameter defining what service account name to use for bundle requests.
Variables ¶
var ( // ResolverAnnotationKind is the resolver annotation used to indicate // the "kind" of resource. ResolverAnnotationKind = resolution.GroupName + "/" + BundleAnnotationKind // ResolverAnnotationName is resolver annotation used to indicate // the "name" of resource. ResolverAnnotationName = resolution.GroupName + "/" + BundleAnnotationName // ResolverAnnotationAPIVersion is the resolver annotation used to // indicate the "apiVersion" of resource. ResolverAnnotationAPIVersion = resolution.GroupName + "/" + BundleAnnotationAPIVersion )
Functions ¶
func ResolveRequest ¶ added in v0.60.0
func ResolveRequest(ctx context.Context, kubeClientSet kubernetes.Interface, req *v1beta1.ResolutionRequestSpec) (framework.ResolvedResource, error)
Resolve uses the given params to resolve the requested file or resource.
Types ¶
type RequestOptions ¶
type RequestOptions struct { ServiceAccount string ImagePullSecret string Bundle string EntryName string Kind string }
RequestOptions are the options used to request a resource from a remote bundle.
func OptionsFromParams ¶
func OptionsFromParams(ctx context.Context, params []pipelinev1.Param) (RequestOptions, error)
OptionsFromParams parses the params from a resolution request and converts them into options to pass as part of a bundle request.
type ResolvedResource ¶
type ResolvedResource struct {
// contains filtered or unexported fields
}
ResolvedResource wraps the content of a matched entry in a bundle.
func GetEntry ¶
func GetEntry(ctx context.Context, keychain authn.Keychain, opts RequestOptions) (*ResolvedResource, error)
GetEntry accepts a keychain and options for the request and returns either a successfully resolved bundle entry or an error.
func (*ResolvedResource) Annotations ¶
func (br *ResolvedResource) Annotations() map[string]string
Annotations returns the annotations from the bundle that are relevant to resolution.
func (*ResolvedResource) Data ¶
func (br *ResolvedResource) Data() []byte
Data returns the bytes of the resource fetched from the bundle.
func (*ResolvedResource) RefSource ¶ added in v0.47.0
func (br *ResolvedResource) RefSource() *pipelinev1.RefSource
RefSource is the source reference of the remote data that records where the remote file came from including the url, digest and the entrypoint.
type Resolver
deprecated
type Resolver struct {
// contains filtered or unexported fields
}
Resolver implements a framework.Resolver that can fetch files from OCI bundles.
Deprecated: Use github.com/tektoncd/pipeline/pkg/remoteresolution/resolver/bundle.Resolver instead.
func (*Resolver) GetConfigName ¶
GetConfigName returns the name of the bundle resolver's configmap.
func (*Resolver) GetSelector ¶
GetSelector returns a map of labels to match requests to this Resolver.
func (*Resolver) Initialize ¶
Initialize sets up any dependencies needed by the Resolver. None atm.