Documentation ¶
Index ¶
- Constants
- type Resolver
- 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(context.Context) error
- func (r *Resolver) Resolve(ctx context.Context, req *v1beta1.ResolutionRequestSpec) (resolutionframework.ResolvedResource, error)
- func (r *Resolver) Validate(ctx context.Context, req *v1beta1.ResolutionRequestSpec) error
Constants ¶
View Source
const ( // LabelValueHubResolverType is the value to use for the // resolution.tekton.dev/type label on resource requests LabelValueHubResolverType string = "hub" // ArtifactHubType is the value to use setting the type field to artifact ArtifactHubType string = "artifact" // TektonHubType is the value to use setting the type field to tekton TektonHubType string = "tekton" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Resolver ¶
type Resolver struct { // TektonHubURL is the URL for hub resolver with type tekton TektonHubURL string // ArtifactHubURL is the URL for hub resolver with type artifact ArtifactHubURL string }
Resolver implements a framework.Resolver that can fetch files from OCI bundles.
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.
func (*Resolver) Resolve ¶
func (r *Resolver) Resolve(ctx context.Context, req *v1beta1.ResolutionRequestSpec) (resolutionframework.ResolvedResource, error)
Resolve uses the given params to resolve the requested file or resource.
Click to show internal directories.
Click to hide internal directories.