Documentation
¶
Index ¶
- func IsSet(s *string) bool
- type Client
- func (c *Client) ActiveCluster() string
- func (c *Client) ActiveNamespace() string
- func (c *Client) ClusterHasMetrics() (bool, error)
- func (c *Client) Dial() (kubernetes.Interface, error)
- func (c *Client) DialOrDie() kubernetes.Interface
- func (c *Client) FetchClusterRoleBindings() (*rbacv1.ClusterRoleBindingList, error)
- func (c *Client) FetchConfigMaps() (*v1.ConfigMapList, error)
- func (c *Client) FetchDeployments() (*appsv1.DeploymentList, error)
- func (c *Client) FetchEndpoints() (*v1.EndpointsList, error)
- func (c *Client) FetchHorizontalPodAutoscalers() (*autoscalingv1.HorizontalPodAutoscalerList, error)
- func (c *Client) FetchNamespaces() (*v1.NamespaceList, error)
- func (c *Client) FetchNodes() (*v1.NodeList, error)
- func (c *Client) FetchNodesMetrics() ([]mv1beta1.NodeMetrics, error)
- func (c *Client) FetchPersistentVolumeClaims() (*v1.PersistentVolumeClaimList, error)
- func (c *Client) FetchPersistentVolumes() (*v1.PersistentVolumeList, error)
- func (c *Client) FetchPods() (*v1.PodList, error)
- func (c *Client) FetchPodsByLabels(sel string) (*v1.PodList, error)
- func (c *Client) FetchPodsMetrics(ns string) ([]mv1beta1.PodMetrics, error)
- func (c *Client) FetchRoleBindings() (*rbacv1.RoleBindingList, error)
- func (c *Client) FetchSecrets() (*v1.SecretList, error)
- func (c *Client) FetchServiceAccounts() (*v1.ServiceAccountList, error)
- func (c *Client) FetchServices() (*v1.ServiceList, error)
- func (c *Client) FetchStatefulSets() (*appsv1.StatefulSetList, error)
- func (c *Client) RESTConfig() (*rest.Config, error)
- func (c *Client) RawConfig() (clientcmdapi.Config, error)
- type ContainerMetrics
- type Flags
- type Metrics
- type NodeMetrics
- type NodesMetrics
- type PodsMetrics
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct { Flags *Flags // contains filtered or unexported fields }
Client represents an api server client.
func (*Client) ActiveCluster ¶ added in v0.2.0
ActiveCluster get the current cluster name.
func (*Client) ActiveNamespace ¶ added in v0.2.0
ActiveNamespace returns the active namespace from the args or kubeconfig. It returns all namespace is none is found.
func (*Client) ClusterHasMetrics ¶
ClusterHasMetrics checks if metrics server is available on the cluster.
func (*Client) Dial ¶
func (c *Client) Dial() (kubernetes.Interface, error)
Dial returns a handle to api server.
func (*Client) DialOrDie ¶
func (c *Client) DialOrDie() kubernetes.Interface
DialOrDie returns an api server client connection or dies.
func (*Client) FetchClusterRoleBindings ¶ added in v0.2.0
func (c *Client) FetchClusterRoleBindings() (*rbacv1.ClusterRoleBindingList, error)
FetchClusterRoleBindings retrieves all CRoleBindings on the cluster.
func (*Client) FetchConfigMaps ¶ added in v0.2.0
func (c *Client) FetchConfigMaps() (*v1.ConfigMapList, error)
FetchConfigMaps retrieves all configmaps on the cluster.
func (*Client) FetchDeployments ¶ added in v0.3.0
func (c *Client) FetchDeployments() (*appsv1.DeploymentList, error)
FetchDeployments retrieves all Deployments on the cluster.
func (*Client) FetchEndpoints ¶ added in v0.2.0
func (c *Client) FetchEndpoints() (*v1.EndpointsList, error)
FetchEndpoints retrieves all endpoints on the cluster.
func (*Client) FetchHorizontalPodAutoscalers ¶ added in v0.3.0
func (c *Client) FetchHorizontalPodAutoscalers() (*autoscalingv1.HorizontalPodAutoscalerList, error)
FetchHorizontalPodAutoscalers retrieves all HorizontalPodAutoscalers on the cluster.
func (*Client) FetchNamespaces ¶ added in v0.2.0
func (c *Client) FetchNamespaces() (*v1.NamespaceList, error)
FetchNamespaces retrieves all namespaces on the cluster.
func (*Client) FetchNodes ¶ added in v0.2.0
FetchNodes retrieves all nodes on the cluster.
func (*Client) FetchNodesMetrics ¶
func (c *Client) FetchNodesMetrics() ([]mv1beta1.NodeMetrics, error)
FetchNodesMetrics retrieve metrics from metrics server.
func (*Client) FetchPersistentVolumeClaims ¶ added in v0.3.0
func (c *Client) FetchPersistentVolumeClaims() (*v1.PersistentVolumeClaimList, error)
FetchPersistentVolumeClaims retrieves all persistentvolumes on the cluster.
func (*Client) FetchPersistentVolumes ¶ added in v0.3.0
func (c *Client) FetchPersistentVolumes() (*v1.PersistentVolumeList, error)
FetchPersistentVolumes retrieves all persistentvolumes on the cluster.
func (*Client) FetchPodsByLabels ¶ added in v0.3.0
FetchPodsByLabels retrieves all pods matching a label selector.
func (*Client) FetchPodsMetrics ¶
func (c *Client) FetchPodsMetrics(ns string) ([]mv1beta1.PodMetrics, error)
FetchPodsMetrics return all metrics for pods in a given namespace.
func (*Client) FetchRoleBindings ¶ added in v0.2.0
func (c *Client) FetchRoleBindings() (*rbacv1.RoleBindingList, error)
FetchRoleBindings retrieves all RoleBindings on the cluster.
func (*Client) FetchSecrets ¶ added in v0.2.0
func (c *Client) FetchSecrets() (*v1.SecretList, error)
FetchSecrets retrieves all secrets on the cluster.
func (*Client) FetchServiceAccounts ¶ added in v0.2.0
func (c *Client) FetchServiceAccounts() (*v1.ServiceAccountList, error)
FetchServiceAccounts retrieves all serviceaccounts on the cluster.
func (*Client) FetchServices ¶ added in v0.2.0
func (c *Client) FetchServices() (*v1.ServiceList, error)
FetchServices retrieves all services on the cluster.
func (*Client) FetchStatefulSets ¶ added in v0.3.0
func (c *Client) FetchStatefulSets() (*appsv1.StatefulSetList, error)
FetchStatefulSets retrieves all StatefulSets on the cluster.
func (*Client) RESTConfig ¶ added in v0.2.0
RESTConfig fetch the current REST api-server connection.
type ContainerMetrics ¶
ContainerMetrics tracks container metrics
type Flags ¶ added in v0.2.0
type Flags struct { *genericclioptions.ConfigFlags LintLevel *string Output *string ClearScreen *bool Spinach *string Sections *[]string }
Flags represents Popeye CLI flags.
func (*Flags) OutputFormat ¶ added in v0.3.0
OutputFormat returns the report output format.
type NodeMetrics ¶
type NodeMetrics struct { CurrentCPU resource.Quantity CurrentMEM resource.Quantity AvailableCPU resource.Quantity AvailableMEM resource.Quantity TotalCPU resource.Quantity TotalMEM resource.Quantity }
NodeMetrics describes raw node metrics.
type NodesMetrics ¶
type NodesMetrics map[string]NodeMetrics
NodesMetrics tracks usage metrics per nodes.
type PodsMetrics ¶
type PodsMetrics map[string]ContainerMetrics
PodsMetrics tracks usage metrics per pods.