Documentation ¶
Index ¶
- Constants
- func Create(client *occlient.Client, urlName string, portNumber int, ...) (string, error)
- func Delete(client *occlient.Client, urlName string, applicationName string) error
- func Exists(client *occlient.Client, urlName string, componentName string, ...) (bool, error)
- func GetURLName(componentName string, componentPort int) string
- func GetURLString(protocol, URL string) string
- func GetValidPortNumber(componentName string, portNumber int, portList []string) (int, error)
- type StateType
- type Url
- type UrlList
- type UrlSpec
- type UrlStatus
Constants ¶
const ( // StateTypePushed means that Url is present both locally and on cluster StateTypePushed = "Pushed" // StateTypeNotPushed means that Url is only in local config, but not on the cluster StateTypeNotPushed = "Not Pushed" // StateTypeLocallyDeleted means that Url was deleted from the local config, but it is still present on the cluster StateTypeLocallyDeleted = "Locally Deleted" )
Variables ¶
This section is empty.
Functions ¶
func Create ¶
func Create(client *occlient.Client, urlName string, portNumber int, componentName, applicationName string) (string, error)
Create creates a URL and returns url string and error if any portNumber is the target port number for the route and is -1 in case no port number is specified in which case it is automatically detected for components which expose only one service port)
func Exists ¶ added in v0.0.9
func Exists(client *occlient.Client, urlName string, componentName string, applicationName string) (bool, error)
Exists checks if the url exists in the component or not urlName is the name of the url for checking componentName is the name of the component to which the url's existence is checked applicationName is the name of the application to which the url's existence is checked
func GetURLName ¶ added in v0.0.18
GetURLName returns a url name from the component name and the given port number
func GetURLString ¶ added in v0.0.17
GetURLString returns a string representation of given url
func GetValidPortNumber ¶ added in v0.0.18
GetValidPortNumber checks if the given port number is a valid component port or not if port number is not provided and the component is a single port component, the component port is returned port number is -1 if the user does not specify any port
Types ¶
type Url ¶ added in v0.0.19
type Url struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec UrlSpec `json:"spec,omitempty"` Status UrlStatus `json:"status,omitempty"` }
URL is
func ConvertConfigUrl ¶ added in v1.0.0
ConvertConfigUrl converts ConfigUrl to Url
type UrlList ¶ added in v0.0.19
type UrlList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Url `json:"items"` }
AppList is a list of applications
func List ¶
func List(client *occlient.Client, localConfig *config.LocalConfigInfo, componentName string, applicationName string) (UrlList, error)
List returns all URLs for given component. If componentName is empty string, it lists all url in a given application.
func ListPushed ¶ added in v1.0.0
func ListPushed(client *occlient.Client, componentName string, applicationName string) (UrlList, error)
ListPushed lists the URLs in an application that are in cluster. The results can further be narrowed down if a component name is provided, which will only list URLs for the given component