Documentation ¶
Index ¶
- func ComponentExists(client *occlient.Client, componentType string, componentVersion string) (bool, error)
- func IsComponentTypeSupported(client *occlient.Client, componentType string) (bool, error)
- func SearchComponent(client *occlient.Client, name string) ([]string, error)
- func SliceSupportedTags(component ComponentType) ([]string, []string)
- type ComponentSpec
- type ComponentType
- type ComponentTypeList
- type ServiceSpec
- type ServiceType
- type ServiceTypeList
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ComponentExists ¶ added in v1.0.0
func ComponentExists(client *occlient.Client, componentType string, componentVersion string) (bool, error)
ComponentExists returns true if the given component type and the version are valid, false if not
func IsComponentTypeSupported ¶ added in v1.0.0
IsComponentTypeSupported takes the componentType e.g. java:8 and return true if it is fully supported i.e. debug mode and more.
func SearchComponent ¶ added in v1.0.0
SearchComponent searches for the component
func SliceSupportedTags ¶ added in v1.0.0
func SliceSupportedTags(component ComponentType) ([]string, []string)
SliceSupportedTags splits the tags in to fully supported and unsupported tags
Types ¶
type ComponentSpec ¶ added in v1.0.0
type ComponentSpec struct { AllTags []string `json:"allTags"` NonHiddenTags []string `json:"nonHiddenTags"` SupportedTags []string `json:"supportedTags"` ImageStreamRef imagev1.ImageStream `json:"-"` }
ComponentSpec is the spec for ComponentType
type ComponentType ¶ added in v1.0.0
type ComponentType struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ComponentSpec `json:"spec,omitempty"` }
ComponentType is the main struct for catalog components
type ComponentTypeList ¶ added in v1.0.0
type ComponentTypeList struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Items []ComponentType `json:"items"` }
ComponentTypeList lists all the ComponentType's
func ListComponents ¶ added in v1.0.0
func ListComponents(client *occlient.Client) (ComponentTypeList, error)
ListComponents lists all the available component types
type ServiceSpec ¶ added in v1.0.0
ServiceSpec is the spec for ServiceType
type ServiceType ¶ added in v1.0.0
type ServiceType struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ServiceSpec `json:"spec,omitempty"` }
ServiceType is the main struct for catalog services
type ServiceTypeList ¶ added in v1.0.0
type ServiceTypeList struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Items []ServiceType `json:"items"` }
ServiceTypeList lists all the ServiceType's
func ListServices ¶ added in v1.0.0
func ListServices(client *occlient.Client) (ServiceTypeList, error)
ListServices lists all the available service types
func SearchService ¶ added in v1.0.0
func SearchService(client *occlient.Client, name string) (ServiceTypeList, error)
SearchService searches for the services