 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Ingress ¶
type Ingress struct {
	api.ObjectMeta `json:"objectMeta"`
	api.TypeMeta   `json:"typeMeta"`
	// External endpoints of this ingress.
	Endpoints []common.Endpoint `json:"endpoints"`
}
    Ingress - a single ingress returned to the frontend.
type IngressCell ¶
type IngressCell extensions.Ingress
func (IngressCell) GetProperty ¶
func (self IngressCell) GetProperty(name dataselect.PropertyName) dataselect.ComparableValue
type IngressDetail ¶
type IngressDetail struct {
	ObjectMeta api.ObjectMeta `json:"objectMeta"`
	TypeMeta   api.TypeMeta   `json:"typeMeta"`
	// TODO(bryk): replace this with UI specific fields.
	// Spec is the desired state of the Ingress.
	Spec extensions.IngressSpec `json:"spec"`
	// Status is the current state of the Ingress.
	Status extensions.IngressStatus `json:"status"`
	// List of non-critical errors, that occurred during resource retrieval.
	Errors []error `json:"errors"`
}
    IngressDetail API resource provides mechanisms to inject containers with configuration data while keeping containers agnostic of Kubernetes
type IngressList ¶
type IngressList struct {
	api.ListMeta `json:"listMeta"`
	// Unordered list of Ingresss.
	Items []Ingress `json:"items"`
	// List of non-critical errors, that occurred during resource retrieval.
	Errors []error `json:"errors"`
}
    IngressList - response structure for a queried ingress list.
func GetIngressList ¶
func GetIngressList(client client.Interface, namespace *common.NamespaceQuery, dsQuery *dataselect.DataSelectQuery) (*IngressList, error)
GetIngressList returns all ingresses in the given namespace.
func GetIngressListFromChannels ¶
func GetIngressListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery) (*IngressList, error)
GetIngressListFromChannels - return all ingresses in the given namespace.
       Source Files
      ¶
      Source Files
      ¶
    
- common.go
- detail.go
- list.go
 Click to show internal directories. 
   Click to hide internal directories.