Documentation ¶
Overview ¶
Package k8s provides common functionalities for interacting with a Kubernetes cluster in the context of infrastructure testing.
Index ¶
- func AreAllNodesReady(t *testing.T) bool
- func AreAllNodesReadyE(t *testing.T) (bool, error)
- func CreateNamespace(t *testing.T, options *KubectlOptions, namespaceName string)
- func CreateNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) error
- func DeleteConfigContextE(t *testing.T, contextName string) error
- func DeleteConfigContextWithPathE(t *testing.T, kubeConfigPath string, contextName string) error
- func DeleteNamespace(t *testing.T, options *KubectlOptions, namespaceName string)
- func DeleteNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) error
- func GetKubeConfigPathE(t *testing.T) (string, error)
- func GetKubernetesClientE(t *testing.T) (*kubernetes.Clientset, error)
- func GetKubernetesClientFromOptionsE(t *testing.T, options *KubectlOptions) (*kubernetes.Clientset, error)
- func GetNamespace(t *testing.T, options *KubectlOptions, namespaceName string) corev1.Namespace
- func GetNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) (corev1.Namespace, error)
- func GetNodes(t *testing.T) []corev1.Node
- func GetNodesE(t *testing.T) ([]corev1.Node, error)
- func GetReadyNodes(t *testing.T) []corev1.Node
- func GetReadyNodesE(t *testing.T) ([]corev1.Node, error)
- func GetService(t *testing.T, options *KubectlOptions, serviceName string) *corev1.Service
- func GetServiceE(t *testing.T, options *KubectlOptions, serviceName string) (*corev1.Service, error)
- func GetServiceEndpoint(t *testing.T, service *corev1.Service, servicePort int) string
- func GetServiceEndpointE(t *testing.T, service *corev1.Service, servicePort int) (string, error)
- func IsNodeReady(node corev1.Node) bool
- func IsServiceAvailable(service *corev1.Service) bool
- func KubeConfigPathFromHomeDirE() (string, error)
- func KubectlApply(t *testing.T, options *KubectlOptions, configPath string)
- func KubectlApplyE(t *testing.T, options *KubectlOptions, configPath string) error
- func KubectlApplyFromString(t *testing.T, options *KubectlOptions, configData string)
- func KubectlApplyFromStringE(t *testing.T, options *KubectlOptions, configData string) error
- func KubectlDelete(t *testing.T, options *KubectlOptions, configPath string)
- func KubectlDeleteE(t *testing.T, options *KubectlOptions, configPath string) error
- func KubectlDeleteFromString(t *testing.T, options *KubectlOptions, configData string)
- func KubectlDeleteFromStringE(t *testing.T, options *KubectlOptions, configData string) error
- func LoadApiClientConfigE(configPath string, contextName string) (*restclient.Config, error)
- func LoadConfigFromPath(path string) clientcmd.ClientConfig
- func RemoveOrphanedClusterAndAuthInfoConfig(config *api.Config)
- func RunKubectl(t *testing.T, options *KubectlOptions, args ...string)
- func RunKubectlAndGetOutputE(t *testing.T, options *KubectlOptions, args ...string) (string, error)
- func RunKubectlE(t *testing.T, options *KubectlOptions, args ...string) error
- func StoreConfigToTempFile(t *testing.T, configData string) string
- func StoreConfigToTempFileE(t *testing.T, configData string) (string, error)
- func WaitUntilAllNodesReady(t *testing.T, retries int, sleepBetweenRetries time.Duration)
- func WaitUntilAllNodesReadyE(t *testing.T, retries int, sleepBetweenRetries time.Duration) error
- func WaitUntilServiceAvailable(t *testing.T, options *KubectlOptions, serviceName string, retries int, ...)
- type KubectlOptions
- type MalformedNodeID
- type NoNodesInKubernetes
- type NodeHasNoHostname
- type ServiceNotAvailable
- type UnknownServicePort
- type UnknownServiceType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AreAllNodesReady ¶
AreAllNodesReady checks if all nodes are ready in the Kubernetes cluster targeted by the current config context
func AreAllNodesReadyE ¶
AreAllNodesReadyE checks if all nodes are ready in the Kubernetes cluster targeted by the current config context. If false, returns an error indicating the reason.
func CreateNamespace ¶ added in v0.13.16
func CreateNamespace(t *testing.T, options *KubectlOptions, namespaceName string)
CreateNamespace will create a new Kubernetes namespace on the cluster targeted by the provided options. This will fail the test if there is an error in creating the namespace.
func CreateNamespaceE ¶ added in v0.13.16
func CreateNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) error
CreateNamespaceE will create a new Kubernetes namespace on the cluster targeted by the provided options.
func DeleteConfigContextE ¶
DeleteConfigContextE will remove the context specified at the provided name, and remove any clusters and authinfos that are orphaned as a result of it. The config path is either specified in the environment variable KUBECONFIG or at the user's home directory under `.kube/config`.
func DeleteConfigContextWithPathE ¶
DeleteConfigContextWithPathE will remove the context specified at the provided name, and remove any clusters and authinfos that are orphaned as a result of it.
func DeleteNamespace ¶ added in v0.13.16
func DeleteNamespace(t *testing.T, options *KubectlOptions, namespaceName string)
DeleteNamespace will delete the requested namespace from the Kubernetes cluster targeted by the provided options. This will fail the test if there is an error in creating the namespace.
func DeleteNamespaceE ¶ added in v0.13.16
func DeleteNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) error
DeleteNamespaceE will delete the requested namespace from the Kubernetes cluster targeted by the provided options.
func GetKubeConfigPathE ¶
GetKubeConfigPathE determines which file path to use as the kubectl config path
func GetKubernetesClientE ¶
func GetKubernetesClientE(t *testing.T) (*kubernetes.Clientset, error)
GetKubernetesClientE returns a Kubernetes API client that can be used to make requests.
func GetKubernetesClientFromOptionsE ¶ added in v0.13.16
func GetKubernetesClientFromOptionsE(t *testing.T, options *KubectlOptions) (*kubernetes.Clientset, error)
GetKubernetesClientFromOptionsE returns a Kubernetes API client given a configured KubectlOptions object.
func GetNamespace ¶ added in v0.13.16
GetNamespace will query the Kubernetes cluster targeted by the provided options for the requested namespace. This will fail the test if there is an error in creating the namespace.
func GetNamespaceE ¶ added in v0.13.16
func GetNamespaceE(t *testing.T, options *KubectlOptions, namespaceName string) (corev1.Namespace, error)
GetNamespaceE will query the Kubernetes cluster targeted by the provided options for the requested namespace.
func GetNodes ¶
GetNodes queries Kubernetes for information about the worker nodes registered to the cluster. If anything goes wrong, the function will automatically fail the test.
func GetNodesE ¶
GetNodesE queries Kubernetes for information about the worker nodes registered to the cluster.
func GetReadyNodes ¶
GetReadyNodes queries Kubernetes for information about the worker nodes registered to the cluster and only returns those that are in the ready state. If anything goes wrong, the function will automatically fail the test.
func GetReadyNodesE ¶
GetReadyNodesE queries Kubernetes for information about the worker nodes registered to the cluster and only returns those that are in the ready state.
func GetService ¶ added in v0.13.16
GetService returns a Kubernetes service resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetServiceE ¶ added in v0.13.16
func GetServiceE(t *testing.T, options *KubectlOptions, serviceName string) (*corev1.Service, error)
GetServiceE returns a Kubernetes service resource in the provided namespace with the given name.
func GetServiceEndpoint ¶ added in v0.13.16
GetServiceEndpoint will return the service access point. If the service endpoint is not ready, will fail the test immediately.
func GetServiceEndpointE ¶ added in v0.13.16
GetServiceEndpointE will return the service access point using the following logic:
- For ClusterIP service type, return the URL that maps to ClusterIP and Service Port
- For NodePort service type, identify the public IP of the node (if it exists, otherwise return the bound hostname), and the assigned node port for the provided service port, and return the URL that maps to node ip and node port.
- For LoadBalancer service type, return the publicly accessible hostname of the load balancer.
- All other service types are not supported.
func IsNodeReady ¶
IsNodeReady takes a Kubernetes Node information object and checks if the Node is in the ready state.
func IsServiceAvailable ¶ added in v0.13.16
IsServiceAvailable returns true if the service endpoint is ready to accept traffic.
func KubeConfigPathFromHomeDirE ¶ added in v0.13.14
KubeConfigPathFromHomeDirE returns a string to the default Kubernetes config path in the home directory. This will error if the home directory can not be determined.
func KubectlApply ¶ added in v0.13.16
func KubectlApply(t *testing.T, options *KubectlOptions, configPath string)
KubectlApply will take in a file path and apply it to the cluster targeted by KubectlOptions. If there are any errors, fail the test immediately.
func KubectlApplyE ¶ added in v0.13.16
func KubectlApplyE(t *testing.T, options *KubectlOptions, configPath string) error
KubectlApplyE will take in a file path and apply it to the cluster targeted by KubectlOptions.
func KubectlApplyFromString ¶ added in v0.13.16
func KubectlApplyFromString(t *testing.T, options *KubectlOptions, configData string)
KubectlApplyFromString will take in a kubernetes resource config as a string and apply it on the cluster specified by the provided kubectl options.
func KubectlApplyFromStringE ¶ added in v0.13.16
func KubectlApplyFromStringE(t *testing.T, options *KubectlOptions, configData string) error
KubectlApplyFromStringE will take in a kubernetes resource config as a string and apply it on the cluster specified by the provided kubectl options. If it fails, this will return the error.
func KubectlDelete ¶ added in v0.13.16
func KubectlDelete(t *testing.T, options *KubectlOptions, configPath string)
KubectlDelete will take in a file path and delete it from the cluster targeted by KubectlOptions. If there are any errors, fail the test immediately.
func KubectlDeleteE ¶ added in v0.13.16
func KubectlDeleteE(t *testing.T, options *KubectlOptions, configPath string) error
KubectlDeleteE will take in a file path and delete it from the cluster targeted by KubectlOptions.
func KubectlDeleteFromString ¶ added in v0.13.16
func KubectlDeleteFromString(t *testing.T, options *KubectlOptions, configData string)
KubectlDeleteFromString will take in a kubernetes resource config as a string and delete it on the cluster specified by the provided kubectl options.
func KubectlDeleteFromStringE ¶ added in v0.13.16
func KubectlDeleteFromStringE(t *testing.T, options *KubectlOptions, configData string) error
KubectlDeleteFromStringE will take in a kubernetes resource config as a string and delete it on the cluster specified by the provided kubectl options. If it fails, this will return the error.
func LoadApiClientConfigE ¶ added in v0.13.16
func LoadApiClientConfigE(configPath string, contextName string) (*restclient.Config, error)
LoadApiClientConfig will load a ClientConfig object from a file path that points to a location on disk containing a kubectl config, with the requested context loaded.
func LoadConfigFromPath ¶
func LoadConfigFromPath(path string) clientcmd.ClientConfig
LoadConfigFromPath will load a ClientConfig object from a file path that points to a location on disk containing a kubectl config.
func RemoveOrphanedClusterAndAuthInfoConfig ¶
RemoveOrphanedClusterAndAuthInfoConfig will remove all configurations related to clusters and users that have no contexts associated with it
func RunKubectl ¶ added in v0.13.16
func RunKubectl(t *testing.T, options *KubectlOptions, args ...string)
RunKubectl will call kubectl using the provided options and args, failing the test on error.
func RunKubectlAndGetOutputE ¶ added in v0.13.16
RunKubectlAndGetOutputE will call kubectl using the provided options and args, returning the output of stdout and stderr.
func RunKubectlE ¶ added in v0.13.16
func RunKubectlE(t *testing.T, options *KubectlOptions, args ...string) error
RunKubectlE will call kubectl using the provided options and args.
func StoreConfigToTempFile ¶ added in v0.13.16
StoreConfigToTempFile will store the provided config data to a temporary file created on the os and return the filename.
func StoreConfigToTempFileE ¶ added in v0.13.16
StoreConfigToTempFileE will store the provided config data to a temporary file created on the os and return the filename, or error.
func WaitUntilAllNodesReady ¶
WaitUntilAllNodesReady continuously polls the Kubernetes cluster until all nodes in the cluster reach the ready state, or runs out of retries. Will fail the test immediately if it times out.
func WaitUntilAllNodesReadyE ¶
WaitUntilAllNodesReadyE continuously polls the Kubernetes cluster until all nodes in the cluster reach the ready state, or runs out of retries.
func WaitUntilServiceAvailable ¶ added in v0.13.16
func WaitUntilServiceAvailable(t *testing.T, options *KubectlOptions, serviceName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilServiceAvailable waits until the service endpoint is ready to accept traffic.
Types ¶
type KubectlOptions ¶ added in v0.13.16
type KubectlOptions struct { ContextName string ConfigPath string Namespace string Env map[string]string }
Represents common options necessary to specify for all Kubectl calls
func NewKubectlOptions ¶ added in v0.13.16
func NewKubectlOptions(contextName string, configPath string) *KubectlOptions
type MalformedNodeID ¶ added in v0.13.16
type MalformedNodeID struct {
// contains filtered or unexported fields
}
MalformedNodeID is returned when a Kubernetes node has a malformed node id scheme
func NewMalformedNodeIDError ¶ added in v0.13.16
func NewMalformedNodeIDError(node *corev1.Node) MalformedNodeID
func (MalformedNodeID) Error ¶ added in v0.13.16
func (err MalformedNodeID) Error() string
type NoNodesInKubernetes ¶ added in v0.13.16
type NoNodesInKubernetes struct{}
NoNodesInKubernetes is returned when the Kubernetes cluster has no nodes registered.
func NewNoNodesInKubernetesError ¶ added in v0.13.16
func NewNoNodesInKubernetesError() NoNodesInKubernetes
func (NoNodesInKubernetes) Error ¶ added in v0.13.16
func (err NoNodesInKubernetes) Error() string
type NodeHasNoHostname ¶ added in v0.13.16
type NodeHasNoHostname struct {
// contains filtered or unexported fields
}
NodeHasNoHostname is returned when a Kubernetes node has no discernible hostname
func NewNodeHasNoHostnameError ¶ added in v0.13.16
func NewNodeHasNoHostnameError(node *corev1.Node) NodeHasNoHostname
func (NodeHasNoHostname) Error ¶ added in v0.13.16
func (err NodeHasNoHostname) Error() string
type ServiceNotAvailable ¶ added in v0.13.16
type ServiceNotAvailable struct {
// contains filtered or unexported fields
}
ServiceNotAvailable is returned when a Kubernetes service is not yet available to accept traffic.
func NewServiceNotAvailableError ¶ added in v0.13.16
func NewServiceNotAvailableError(service *corev1.Service) ServiceNotAvailable
func (ServiceNotAvailable) Error ¶ added in v0.13.16
func (err ServiceNotAvailable) Error() string
type UnknownServicePort ¶ added in v0.13.16
type UnknownServicePort struct {
// contains filtered or unexported fields
}
UnknownServicePort is returned when the given service port is not an exported port of the service.
func NewUnknownServicePortError ¶ added in v0.13.16
func NewUnknownServicePortError(service *corev1.Service, port int32) UnknownServicePort
func (UnknownServicePort) Error ¶ added in v0.13.16
func (err UnknownServicePort) Error() string
type UnknownServiceType ¶ added in v0.13.16
type UnknownServiceType struct {
// contains filtered or unexported fields
}
UnknownServiceType is returned when a Kubernetes service has a type that is not yet handled by the test functions.
func NewUnknownServiceTypeError ¶ added in v0.13.16
func NewUnknownServiceTypeError(service *corev1.Service) UnknownServiceType
func (UnknownServiceType) Error ¶ added in v0.13.16
func (err UnknownServiceType) Error() string