catalog

package
v2.53.0 Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsInvalidConfig

func IsInvalidConfig(err error) bool

IsInvalidConfig asserts invalidConfigError.

func IsNoMatch

func IsNoMatch(err error) bool

IsNoMatch asserts noMatchError.

func IsNoResources

func IsNoResources(err error) bool

IsNoResources asserts noResourcesError.

func IsNotFound

func IsNotFound(err error) bool

IsNotFound asserts notFoundError.

Types

type Catalog

Catalog abstracts away the custom resource so it can be returned as a runtime object or a typed custom resource.

func (*Catalog) Object

func (a *Catalog) Object() runtime.Object

type Collection

type Collection struct {
	Items []Catalog
}

Collection wraps a list of catalogs.

func (*Collection) Object

func (cc *Collection) Object() runtime.Object

type Config

type Config struct {
	Client client.Client
}

Config represent the input parameters that New takes to produce a valid catalog getter Service.

type GetOptions

type GetOptions struct {
	AllNamespaces bool
	LabelSelector labels.Selector
	Name          string
	Namespace     string
}

GetOptions are the parameters that the Get method takes.

type Interface

type Interface interface {
	Get(context.Context, GetOptions) (Resource, error)
}

Interface represents the contract for the appcatalog data service. Using this instead of a regular 'struct' makes mocking the service in tests much simpler.

func New

func New(config Config) (Interface, error)

New returns a new catalog getter Service.

type Resource

type Resource interface {
	Object() runtime.Object
}

type Service

type Service struct {
	// contains filtered or unexported fields
}

Service is the object we'll hang the catalog getter methods on.

func (*Service) Get

func (s *Service) Get(ctx context.Context, options GetOptions) (Resource, error)

Get fetches a list of catalog CRs optionally filtered by name.

Jump to

Keyboard shortcuts

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