Documentation ¶
Overview ¶
Package k8s provides common functionalities for interacting with a Kubernetes cluster in the context of infrastructure testing.
Index ¶
- func AddConfigContextForServiceAccountE(t testing.TestingT, kubectlOptions *KubectlOptions, contextName string, ...) error
- func AreAllNodesReady(t testing.TestingT, options *KubectlOptions) bool
- func AreAllNodesReadyE(t testing.TestingT, options *KubectlOptions) (bool, error)
- func CanIDo(t testing.TestingT, options *KubectlOptions, action authv1.ResourceAttributes) bool
- func CanIDoE(t testing.TestingT, options *KubectlOptions, action authv1.ResourceAttributes) (bool, error)
- func CopyHomeKubeConfigToTemp(t testing.TestingT) string
- func CopyHomeKubeConfigToTempE(t testing.TestingT) (string, error)
- func CreateNamespace(t testing.TestingT, options *KubectlOptions, namespaceName string)
- func CreateNamespaceE(t testing.TestingT, options *KubectlOptions, namespaceName string) error
- func CreateNamespaceWithMetadata(t testing.TestingT, options *KubectlOptions, ...)
- func CreateNamespaceWithMetadataE(t testing.TestingT, options *KubectlOptions, ...) error
- func CreateServiceAccount(t testing.TestingT, options *KubectlOptions, serviceAccountName string)
- func CreateServiceAccountE(t testing.TestingT, options *KubectlOptions, serviceAccountName string) error
- func DeleteConfigContextE(t testing.TestingT, contextName string) error
- func DeleteConfigContextWithPathE(t testing.TestingT, kubeConfigPath string, contextName string) error
- func DeleteNamespace(t testing.TestingT, options *KubectlOptions, namespaceName string)
- func DeleteNamespaceE(t testing.TestingT, options *KubectlOptions, namespaceName string) error
- func FindNodeHostnameE(t testing.TestingT, node corev1.Node) (string, error)
- func FindNodePortE(service *corev1.Service, servicePort int32) (int32, error)
- func GetAvailablePort(t testing.TestingT) int
- func GetAvailablePortE(t testing.TestingT) (int, error)
- func GetClusterRole(t testing.TestingT, options *KubectlOptions, roleName string) *rbacv1.ClusterRole
- func GetClusterRoleE(t testing.TestingT, options *KubectlOptions, roleName string) (*rbacv1.ClusterRole, error)
- func GetConfigMap(t testing.TestingT, options *KubectlOptions, configMapName string) *corev1.ConfigMap
- func GetConfigMapE(t testing.TestingT, options *KubectlOptions, configMapName string) (*corev1.ConfigMap, error)
- func GetDaemonSet(t testing.TestingT, options *KubectlOptions, daemonSetName string) *appsv1.DaemonSet
- func GetDaemonSetE(t testing.TestingT, options *KubectlOptions, daemonSetName string) (*appsv1.DaemonSet, error)
- func GetDeployment(t testing.TestingT, options *KubectlOptions, deploymentName string) *appsv1.Deployment
- func GetDeploymentE(t testing.TestingT, options *KubectlOptions, deploymentName string) (*appsv1.Deployment, error)
- func GetIngress(t testing.TestingT, options *KubectlOptions, ingressName string) *networkingv1.Ingress
- func GetIngressE(t testing.TestingT, options *KubectlOptions, ingressName string) (*networkingv1.Ingress, error)
- func GetIngressV1Beta1(t testing.TestingT, options *KubectlOptions, ingressName string) *networkingv1beta1.Ingress
- func GetIngressV1Beta1E(t testing.TestingT, options *KubectlOptions, ingressName string) (*networkingv1beta1.Ingress, error)
- func GetJob(t testing.TestingT, options *KubectlOptions, jobName string) *batchv1.Job
- func GetJobE(t testing.TestingT, options *KubectlOptions, jobName string) (*batchv1.Job, error)
- func GetKubeConfigPathE(t testing.TestingT) (string, error)
- func GetKubernetesClientE(t testing.TestingT) (*kubernetes.Clientset, error)
- func GetKubernetesClientFromOptionsE(t testing.TestingT, options *KubectlOptions) (*kubernetes.Clientset, error)
- func GetKubernetesClusterVersionE(t testing.TestingT) (string, error)
- func GetKubernetesClusterVersionWithOptionsE(t testing.TestingT, kubectlOptions *KubectlOptions) (string, error)
- func GetNamespace(t testing.TestingT, options *KubectlOptions, namespaceName string) *corev1.Namespace
- func GetNamespaceE(t testing.TestingT, options *KubectlOptions, namespaceName string) (*corev1.Namespace, error)
- func GetNetworkPolicy(t testing.TestingT, options *KubectlOptions, networkPolicyName string) *networkingv1.NetworkPolicy
- func GetNetworkPolicyE(t testing.TestingT, options *KubectlOptions, networkPolicyName string) (*networkingv1.NetworkPolicy, error)
- func GetNodes(t testing.TestingT, options *KubectlOptions) []corev1.Node
- func GetNodesByFilterE(t testing.TestingT, options *KubectlOptions, filter metav1.ListOptions) ([]corev1.Node, error)
- func GetNodesE(t testing.TestingT, options *KubectlOptions) ([]corev1.Node, error)
- func GetPersistentVolume(t testing.TestingT, options *KubectlOptions, name string) *corev1.PersistentVolume
- func GetPersistentVolumeClaim(t testing.TestingT, options *KubectlOptions, pvcName string) *corev1.PersistentVolumeClaim
- func GetPersistentVolumeClaimE(t testing.TestingT, options *KubectlOptions, pvcName string) (*corev1.PersistentVolumeClaim, error)
- func GetPersistentVolumeE(t testing.TestingT, options *KubectlOptions, name string) (*corev1.PersistentVolume, error)
- func GetPod(t testing.TestingT, options *KubectlOptions, podName string) *corev1.Pod
- func GetPodE(t testing.TestingT, options *KubectlOptions, podName string) (*corev1.Pod, error)
- func GetPodLogs(t testing.TestingT, options *KubectlOptions, pod *corev1.Pod, ...) string
- func GetPodLogsE(t testing.TestingT, options *KubectlOptions, pod *corev1.Pod, ...) (string, error)
- func GetReadyNodes(t testing.TestingT, options *KubectlOptions) []corev1.Node
- func GetReadyNodesE(t testing.TestingT, options *KubectlOptions) ([]corev1.Node, error)
- func GetReplicaSet(t testing.TestingT, options *KubectlOptions, replicaSetName string) *appsv1.ReplicaSet
- func GetReplicaSetE(t testing.TestingT, options *KubectlOptions, replicaSetName string) (*appsv1.ReplicaSet, error)
- func GetRole(t testing.TestingT, options *KubectlOptions, roleName string) *rbacv1.Role
- func GetRoleE(t testing.TestingT, options *KubectlOptions, roleName string) (*rbacv1.Role, error)
- func GetSecret(t testing.TestingT, options *KubectlOptions, secretName string) *corev1.Secret
- func GetSecretE(t testing.TestingT, options *KubectlOptions, secretName string) (*corev1.Secret, error)
- func GetService(t testing.TestingT, options *KubectlOptions, serviceName string) *corev1.Service
- func GetServiceAccount(t testing.TestingT, options *KubectlOptions, serviceAccountName string) *corev1.ServiceAccount
- func GetServiceAccountAuthToken(t testing.TestingT, kubectlOptions *KubectlOptions, serviceAccountName string) string
- func GetServiceAccountAuthTokenE(t testing.TestingT, kubectlOptions *KubectlOptions, serviceAccountName string) (string, error)
- func GetServiceAccountE(t testing.TestingT, options *KubectlOptions, serviceAccountName string) (*corev1.ServiceAccount, error)
- func GetServiceE(t testing.TestingT, options *KubectlOptions, serviceName string) (*corev1.Service, error)
- func GetServiceEndpoint(t testing.TestingT, options *KubectlOptions, service *corev1.Service, ...) string
- func GetServiceEndpointE(t testing.TestingT, options *KubectlOptions, service *corev1.Service, ...) (string, error)
- func IsDeploymentAvailable(deploy *appsv1.Deployment) bool
- func IsIngressAvailable(ingress *networkingv1.Ingress) bool
- func IsIngressAvailableV1Beta1(ingress *networkingv1beta1.Ingress) bool
- func IsJobSucceeded(job *batchv1.Job) bool
- func IsMinikubeE(t testing.TestingT, options *KubectlOptions) (bool, error)
- func IsNodeReady(node corev1.Node) bool
- func IsPersistentVolumeClaimInStatus(pvc *corev1.PersistentVolumeClaim, ...) bool
- func IsPersistentVolumeInStatus(pv *corev1.PersistentVolume, pvStatusPhase *corev1.PersistentVolumePhase) bool
- func IsPodAvailable(pod *corev1.Pod) bool
- func IsServiceAvailable(service *corev1.Service) bool
- func KubeConfigPathFromHomeDirE() (string, error)
- func KubectlApply(t testing.TestingT, options *KubectlOptions, configPath string)
- func KubectlApplyE(t testing.TestingT, options *KubectlOptions, configPath string) error
- func KubectlApplyFromKustomize(t testing.TestingT, options *KubectlOptions, configPath string)
- func KubectlApplyFromKustomizeE(t testing.TestingT, options *KubectlOptions, configPath string) error
- func KubectlApplyFromString(t testing.TestingT, options *KubectlOptions, configData string)
- func KubectlApplyFromStringE(t testing.TestingT, options *KubectlOptions, configData string) error
- func KubectlDelete(t testing.TestingT, options *KubectlOptions, configPath string)
- func KubectlDeleteE(t testing.TestingT, options *KubectlOptions, configPath string) error
- func KubectlDeleteFromKustomize(t testing.TestingT, options *KubectlOptions, configPath string)
- func KubectlDeleteFromKustomizeE(t testing.TestingT, options *KubectlOptions, configPath string) error
- func KubectlDeleteFromString(t testing.TestingT, options *KubectlOptions, configData string)
- func KubectlDeleteFromStringE(t testing.TestingT, options *KubectlOptions, configData string) error
- func ListDaemonSets(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.DaemonSet
- func ListDaemonSetsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.DaemonSet, error)
- func ListDeployments(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.Deployment
- func ListDeploymentsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.Deployment, error)
- func ListEvents(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Event
- func ListEventsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Event, error)
- func ListIngresses(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []networkingv1.Ingress
- func ListIngressesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]networkingv1.Ingress, error)
- func ListIngressesV1Beta1(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []networkingv1beta1.Ingress
- func ListIngressesV1Beta1E(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]networkingv1beta1.Ingress, error)
- func ListJobs(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []batchv1.Job
- func ListJobsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]batchv1.Job, error)
- func ListPersistentVolumeClaims(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.PersistentVolumeClaim
- func ListPersistentVolumeClaimsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.PersistentVolumeClaim, error)
- func ListPersistentVolumes(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.PersistentVolume
- func ListPersistentVolumesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.PersistentVolume, error)
- func ListPods(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Pod
- func ListPodsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Pod, error)
- func ListReplicaSets(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.ReplicaSet
- func ListReplicaSetsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.ReplicaSet, error)
- func ListServices(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Service
- func ListServicesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Service, 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.TestingT, options *KubectlOptions, args ...string)
- func RunKubectlAndGetOutputE(t testing.TestingT, options *KubectlOptions, args ...string) (string, error)
- func RunKubectlE(t testing.TestingT, options *KubectlOptions, args ...string) error
- func StoreConfigToTempFile(t testing.TestingT, configData string) string
- func StoreConfigToTempFileE(t testing.TestingT, configData string) (string, error)
- func UnmarshalJSONPath(t testing.TestingT, jsonData []byte, jsonpathStr string, output interface{})
- func UnmarshalJSONPathE(t testing.TestingT, jsonData []byte, jsonpathStr string, output interface{}) error
- func UpsertConfigContext(config *api.Config, contextName string, clusterName string, userName string)
- func WaitUntilAllNodesReady(t testing.TestingT, options *KubectlOptions, retries int, ...)
- func WaitUntilAllNodesReadyE(t testing.TestingT, options *KubectlOptions, retries int, ...) error
- func WaitUntilConfigMapAvailable(t testing.TestingT, options *KubectlOptions, configMapName string, retries int, ...)
- func WaitUntilDeploymentAvailable(t testing.TestingT, options *KubectlOptions, deploymentName string, ...)
- func WaitUntilDeploymentAvailableE(t testing.TestingT, options *KubectlOptions, deploymentName string, ...) error
- func WaitUntilIngressAvailable(t testing.TestingT, options *KubectlOptions, ingressName string, retries int, ...)
- func WaitUntilIngressAvailableV1Beta1(t testing.TestingT, options *KubectlOptions, ingressName string, retries int, ...)
- func WaitUntilJobSucceed(t testing.TestingT, options *KubectlOptions, jobName string, retries int, ...)
- func WaitUntilJobSucceedE(t testing.TestingT, options *KubectlOptions, jobName string, retries int, ...) error
- func WaitUntilNetworkPolicyAvailable(t testing.TestingT, options *KubectlOptions, networkPolicyName string, ...)
- func WaitUntilNumPodsCreated(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions, ...)
- func WaitUntilNumPodsCreatedE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions, ...) error
- func WaitUntilPersistentVolumeClaimInStatus(t testing.TestingT, options *KubectlOptions, pvcName string, ...)
- func WaitUntilPersistentVolumeClaimInStatusE(t testing.TestingT, options *KubectlOptions, pvcName string, ...) error
- func WaitUntilPersistentVolumeInStatus(t testing.TestingT, options *KubectlOptions, pvName string, ...)
- func WaitUntilPersistentVolumeInStatusE(t testing.TestingT, options *KubectlOptions, pvName string, ...) error
- func WaitUntilPodAvailable(t testing.TestingT, options *KubectlOptions, podName string, retries int, ...)
- func WaitUntilPodAvailableE(t testing.TestingT, options *KubectlOptions, podName string, retries int, ...) error
- func WaitUntilSecretAvailable(t testing.TestingT, options *KubectlOptions, secretName string, retries int, ...)
- func WaitUntilServiceAvailable(t testing.TestingT, options *KubectlOptions, serviceName string, retries int, ...)
- type DeploymentNotAvailable
- type DesiredNumberOfPodsNotCreated
- type IngressNotAvailable
- type IngressNotAvailableV1Beta1
- type JSONPathExtractJSONPathErr
- type JSONPathMalformedJSONErr
- type JSONPathMalformedJSONPathErr
- type JSONPathMalformedJSONPathResultErr
- type JobNotSucceeded
- type KubeResourceType
- type KubectlOptions
- type MalformedNodeID
- type NoNodesInKubernetes
- type NodeHasNoHostname
- type PersistentVolumeClaimNotInStatus
- type PersistentVolumeNotInStatus
- type PodNotAvailable
- type ServiceAccountTokenNotAvailable
- type ServiceNotAvailable
- type Tunnel
- type UnknownKubeResourceType
- type UnknownServicePort
- type UnknownServiceType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddConfigContextForServiceAccountE ¶ added in v0.13.24
func AddConfigContextForServiceAccountE( t testing.TestingT, kubectlOptions *KubectlOptions, contextName string, serviceAccountName string, token string, ) error
AddConfigContextForServiceAccountE will add a new config context that binds the ServiceAccount auth token to the Kubernetes cluster of the current config context.
func AreAllNodesReady ¶
func AreAllNodesReady(t testing.TestingT, options *KubectlOptions) bool
AreAllNodesReady checks if all nodes are ready in the Kubernetes cluster targeted by the current config context
func AreAllNodesReadyE ¶
func AreAllNodesReadyE(t testing.TestingT, options *KubectlOptions) (bool, error)
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 CanIDo ¶ added in v0.13.24
func CanIDo(t testing.TestingT, options *KubectlOptions, action authv1.ResourceAttributes) bool
CanIDo returns whether or not the provided action is allowed by the client configured by the provided kubectl option. This will fail if there are any errors accessing the kubernetes API (but not if the action is denied).
func CanIDoE ¶ added in v0.13.24
func CanIDoE(t testing.TestingT, options *KubectlOptions, action authv1.ResourceAttributes) (bool, error)
CanIDoE returns whether or not the provided action is allowed by the client configured by the provided kubectl option. This will an error if there are problems accessing the kubernetes API (but not if the action is simply denied).
func CopyHomeKubeConfigToTemp ¶ added in v0.13.24
CopyHomeKubeConfigToTemp will copy the kubeconfig in the home directory to a temp file. This will fail the test if there are any errors.
func CopyHomeKubeConfigToTempE ¶ added in v0.13.24
CopyHomeKubeConfigToTempE will copy the kubeconfig in the home directory to a temp file.
func CreateNamespace ¶ added in v0.13.16
func CreateNamespace(t testing.TestingT, 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.TestingT, options *KubectlOptions, namespaceName string) error
CreateNamespaceE will create a new Kubernetes namespace on the cluster targeted by the provided options.
func CreateNamespaceWithMetadata ¶ added in v0.32.3
func CreateNamespaceWithMetadata(t testing.TestingT, options *KubectlOptions, namespaceObjectMeta metav1.ObjectMeta)
CreateNamespaceWithMetadata will create a new Kubernetes namespace on the cluster targeted by the provided options and with the provided metadata. This method expects the entire namespace ObjectMeta to be passed in, so you'll need to set the name within the ObjectMeta struct yourself. This will fail the test if there is an error while creating the namespace.
func CreateNamespaceWithMetadataE ¶ added in v0.32.3
func CreateNamespaceWithMetadataE(t testing.TestingT, options *KubectlOptions, namespaceObjectMeta metav1.ObjectMeta) error
CreateNamespaceWithMetadataE will create a new Kubernetes namespace on the cluster targeted by the provided options and with the provided metadata. This method expects the entire namespace ObjectMeta to be passed in, so you'll need to set the name within the ObjectMeta struct yourself.
func CreateServiceAccount ¶ added in v0.13.22
func CreateServiceAccount(t testing.TestingT, options *KubectlOptions, serviceAccountName string)
CreateServiceAccount will create a new service account resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func CreateServiceAccountE ¶ added in v0.13.22
func CreateServiceAccountE(t testing.TestingT, options *KubectlOptions, serviceAccountName string) error
CreateServiceAccountE will create a new service account resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
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 ¶
func DeleteConfigContextWithPathE(t testing.TestingT, kubeConfigPath string, contextName string) error
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.TestingT, 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.TestingT, options *KubectlOptions, namespaceName string) error
DeleteNamespaceE will delete the requested namespace from the Kubernetes cluster targeted by the provided options.
func FindNodeHostnameE ¶ added in v0.17.5
Given a node, return the ip address, preferring the external IP
func FindNodePortE ¶ added in v0.17.5
Given the desired servicePort, return the allocated nodeport
func GetAvailablePort ¶ added in v0.13.28
GetAvailablePort retrieves an available port on the host machine. This delegates the port selection to the golang net library by starting a server and then checking the port that the server is using. This will fail the test if it could not find an available port.
func GetAvailablePortE ¶ added in v0.13.28
GetAvailablePortE retrieves an available port on the host machine. This delegates the port selection to the golang net library by starting a server and then checking the port that the server is using.
func GetClusterRole ¶ added in v0.13.30
func GetClusterRole(t testing.TestingT, options *KubectlOptions, roleName string) *rbacv1.ClusterRole
GetClusterRole returns a Kubernetes ClusterRole resource with the given name. This will fail the test if there is an error.
func GetClusterRoleE ¶ added in v0.13.30
func GetClusterRoleE(t testing.TestingT, options *KubectlOptions, roleName string) (*rbacv1.ClusterRole, error)
GetClusterRoleE returns a Kubernetes ClusterRole resource with the given name.
func GetConfigMap ¶ added in v0.41.6
func GetConfigMap(t testing.TestingT, options *KubectlOptions, configMapName string) *corev1.ConfigMap
GetConfigMap returns a Kubernetes configmap resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func GetConfigMapE ¶ added in v0.41.6
func GetConfigMapE(t testing.TestingT, options *KubectlOptions, configMapName string) (*corev1.ConfigMap, error)
GetConfigMapE returns a Kubernetes configmap resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
func GetDaemonSet ¶ added in v0.19.6
func GetDaemonSet(t testing.TestingT, options *KubectlOptions, daemonSetName string) *appsv1.DaemonSet
GetDaemonSet returns a Kubernetes daemonset resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetDaemonSetE ¶ added in v0.19.6
func GetDaemonSetE(t testing.TestingT, options *KubectlOptions, daemonSetName string) (*appsv1.DaemonSet, error)
GetDaemonSetE returns a Kubernetes daemonset resource in the provided namespace with the given name.
func GetDeployment ¶ added in v0.41.21
func GetDeployment(t testing.TestingT, options *KubectlOptions, deploymentName string) *appsv1.Deployment
GetDeployment returns a Kubernetes deployment resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetDeploymentE ¶ added in v0.41.21
func GetDeploymentE(t testing.TestingT, options *KubectlOptions, deploymentName string) (*appsv1.Deployment, error)
GetDeploymentE returns a Kubernetes deployment resource in the provided namespace with the given name.
func GetIngress ¶ added in v0.14.5
func GetIngress(t testing.TestingT, options *KubectlOptions, ingressName string) *networkingv1.Ingress
GetIngress returns a Kubernetes Ingress resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetIngressE ¶ added in v0.14.5
func GetIngressE(t testing.TestingT, options *KubectlOptions, ingressName string) (*networkingv1.Ingress, error)
GetIngressE returns a Kubernetes Ingress resource in the provided namespace with the given name.
func GetIngressV1Beta1 ¶ added in v0.34.0
func GetIngressV1Beta1(t testing.TestingT, options *KubectlOptions, ingressName string) *networkingv1beta1.Ingress
GetIngressV1Beta1 returns a Kubernetes Ingress resource in the provided namespace with the given name, using networking.k8s.io/v1beta1 API. This will fail the test if there is an error.
func GetIngressV1Beta1E ¶ added in v0.34.0
func GetIngressV1Beta1E(t testing.TestingT, options *KubectlOptions, ingressName string) (*networkingv1beta1.Ingress, error)
GetIngressV1Beta1E returns a Kubernetes Ingress resource in the provided namespace with the given name, using networking.k8s.io/v1beta1.
func GetJob ¶ added in v0.36.7
GetJob returns a Kubernetes job resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetJobE ¶ added in v0.36.7
GetJobE returns a Kubernetes job resource in the provided namespace with the given name.
func GetKubeConfigPathE ¶
GetKubeConfigPathE determines which file path to use as the kubectl config path
func GetKubernetesClientE ¶
func GetKubernetesClientE(t testing.TestingT) (*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.TestingT, options *KubectlOptions) (*kubernetes.Clientset, error)
GetKubernetesClientFromOptionsE returns a Kubernetes API client given a configured KubectlOptions object.
func GetKubernetesClusterVersionE ¶ added in v0.34.8
GetKubernetesClusterVersion returns the Kubernetes cluster version.
func GetKubernetesClusterVersionWithOptionsE ¶ added in v0.34.8
func GetKubernetesClusterVersionWithOptionsE(t testing.TestingT, kubectlOptions *KubectlOptions) (string, error)
GetKubernetesClusterVersion returns the Kubernetes cluster version given a configured KubectlOptions object.
func GetNamespace ¶ added in v0.13.16
func GetNamespace(t testing.TestingT, options *KubectlOptions, namespaceName string) *corev1.Namespace
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 getting the namespace or if the namespace doesn't exist.
func GetNamespaceE ¶ added in v0.13.16
func GetNamespaceE(t testing.TestingT, options *KubectlOptions, namespaceName string) (*corev1.Namespace, error)
GetNamespaceE will query the Kubernetes cluster targeted by the provided options for the requested namespace.
func GetNetworkPolicy ¶ added in v0.41.4
func GetNetworkPolicy(t testing.TestingT, options *KubectlOptions, networkPolicyName string) *networkingv1.NetworkPolicy
GetNetworkPolicy returns a Kubernetes networkpolicy resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func GetNetworkPolicyE ¶ added in v0.41.4
func GetNetworkPolicyE(t testing.TestingT, options *KubectlOptions, networkPolicyName string) (*networkingv1.NetworkPolicy, error)
GetNetworkPolicyE returns a Kubernetes networkpolicy resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
func GetNodes ¶
func GetNodes(t testing.TestingT, options *KubectlOptions) []corev1.Node
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 GetNodesByFilterE ¶ added in v0.17.5
func GetNodesByFilterE(t testing.TestingT, options *KubectlOptions, filter metav1.ListOptions) ([]corev1.Node, error)
GetNodesByFilterE queries Kubernetes for information about the worker nodes registered to the cluster, filtering the list of nodes using the provided ListOptions.
func GetNodesE ¶
GetNodesE queries Kubernetes for information about the worker nodes registered to the cluster.
func GetPersistentVolume ¶ added in v0.41.24
func GetPersistentVolume(t testing.TestingT, options *KubectlOptions, name string) *corev1.PersistentVolume
GetPersistentVolume returns a Kubernetes PersistentVolume resource with the given name. This will fail the test if there is an error.
func GetPersistentVolumeClaim ¶ added in v0.41.25
func GetPersistentVolumeClaim(t testing.TestingT, options *KubectlOptions, pvcName string) *corev1.PersistentVolumeClaim
GetPersistentVolumeClaim returns a Kubernetes PersistentVolumeClaim resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetPersistentVolumeClaimE ¶ added in v0.41.25
func GetPersistentVolumeClaimE(t testing.TestingT, options *KubectlOptions, pvcName string) (*corev1.PersistentVolumeClaim, error)
GetPersistentVolumeClaimE returns a Kubernetes PersistentVolumeClaim resource in the provided namespace with the given name.
func GetPersistentVolumeE ¶ added in v0.41.24
func GetPersistentVolumeE(t testing.TestingT, options *KubectlOptions, name string) (*corev1.PersistentVolume, error)
GetPersistentVolumeE returns a Kubernetes PersistentVolume resource with the given name.
func GetPod ¶ added in v0.13.21
GetPod returns a Kubernetes pod resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetPodE ¶ added in v0.13.21
GetPodE returns a Kubernetes pod resource in the provided namespace with the given name.
func GetPodLogs ¶ added in v0.41.10
func GetPodLogs(t testing.TestingT, options *KubectlOptions, pod *corev1.Pod, containerName string) string
GetPodLogsE returns the logs of a Pod at the time when the function was called. Pass container name if there are more containers in the Pod or set to "" if there is only one.
func GetPodLogsE ¶ added in v0.41.10
func GetPodLogsE(t testing.TestingT, options *KubectlOptions, pod *corev1.Pod, containerName string) (string, error)
GetPodLogsE returns the logs of a Pod at the time when the function was called. Pass container name if there are more containers in the Pod or set to "" if there is only one. If the Pod is not running an Error is returned. If the provided containerName is not the name of a container in the Pod an Error is returned.
func GetReadyNodes ¶
func GetReadyNodes(t testing.TestingT, options *KubectlOptions) []corev1.Node
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 GetReplicaSet ¶ added in v0.32.12
func GetReplicaSet(t testing.TestingT, options *KubectlOptions, replicaSetName string) *appsv1.ReplicaSet
GetReplicaSet returns a Kubernetes replicaset resource in the provided namespace with the given name. This will fail the test if there is an error.
func GetReplicaSetE ¶ added in v0.32.12
func GetReplicaSetE(t testing.TestingT, options *KubectlOptions, replicaSetName string) (*appsv1.ReplicaSet, error)
GetReplicaSetE returns a Kubernetes replicaset resource in the provided namespace with the given name.
func GetRole ¶ added in v0.13.30
GetRole returns a Kubernetes role resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func GetRoleE ¶ added in v0.13.30
GetRoleE returns a Kubernetes role resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
func GetSecret ¶ added in v0.13.22
GetSecret returns a Kubernetes secret resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func GetSecretE ¶ added in v0.13.22
func GetSecretE(t testing.TestingT, options *KubectlOptions, secretName string) (*corev1.Secret, error)
GetSecretE returns a Kubernetes secret resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
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 GetServiceAccount ¶ added in v0.13.22
func GetServiceAccount(t testing.TestingT, options *KubectlOptions, serviceAccountName string) *corev1.ServiceAccount
GetServiceAccount returns a Kubernetes service account resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions. This will fail the test if there is an error.
func GetServiceAccountAuthToken ¶ added in v0.13.24
func GetServiceAccountAuthToken(t testing.TestingT, kubectlOptions *KubectlOptions, serviceAccountName string) string
GetServiceAccountAuthToken will retrieve the ServiceAccount token from the cluster so it can be used to authenticate requests as that ServiceAccount. This will fail the test if there is an error.
func GetServiceAccountAuthTokenE ¶ added in v0.13.24
func GetServiceAccountAuthTokenE(t testing.TestingT, kubectlOptions *KubectlOptions, serviceAccountName string) (string, error)
GetServiceAccountAuthTokenE will retrieve the ServiceAccount token from the cluster so it can be used to authenticate requests as that ServiceAccount.
func GetServiceAccountE ¶ added in v0.13.22
func GetServiceAccountE(t testing.TestingT, options *KubectlOptions, serviceAccountName string) (*corev1.ServiceAccount, error)
GetServiceAccountE returns a Kubernetes service account resource in the provided namespace with the given name. The namespace used is the one provided in the KubectlOptions.
func GetServiceE ¶ added in v0.13.16
func GetServiceE(t testing.TestingT, 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
func GetServiceEndpoint(t testing.TestingT, options *KubectlOptions, service *corev1.Service, servicePort int) string
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
func GetServiceEndpointE(t testing.TestingT, options *KubectlOptions, service *corev1.Service, servicePort int) (string, error)
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. If the hostname is empty, it will return the public IP of the LoadBalancer.
- All other service types are not supported.
func IsDeploymentAvailable ¶ added in v0.41.21
func IsDeploymentAvailable(deploy *appsv1.Deployment) bool
IsDeploymentAvailable returns true if all pods within the deployment are ready and started
func IsIngressAvailable ¶ added in v0.14.5
func IsIngressAvailable(ingress *networkingv1.Ingress) bool
IsIngressAvailable returns true if the Ingress endpoint is provisioned and available.
func IsIngressAvailableV1Beta1 ¶ added in v0.34.0
func IsIngressAvailableV1Beta1(ingress *networkingv1beta1.Ingress) bool
IsIngressAvailableV1Beta1 returns true if the Ingress endpoint is provisioned and available, using networking.k8s.io/v1beta1 API.
func IsJobSucceeded ¶ added in v0.36.7
IsJobSucceeded returns true when the job status condition "Complete" is true. This behavior is documented in the kubernetes API reference: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/job-v1/#JobStatus
func IsMinikubeE ¶ added in v0.23.5
func IsMinikubeE(t testing.TestingT, options *KubectlOptions) (bool, error)
IsMinikubeE returns true if the underlying kubernetes cluster is Minikube. This is determined by getting the associated nodes and checking if all nodes has at least one label namespaced with "minikube.k8s.io".
func IsNodeReady ¶
IsNodeReady takes a Kubernetes Node information object and checks if the Node is in the ready state.
func IsPersistentVolumeClaimInStatus ¶ added in v0.41.25
func IsPersistentVolumeClaimInStatus(pvc *corev1.PersistentVolumeClaim, pvcStatusPhase *corev1.PersistentVolumeClaimPhase) bool
IsPersistentVolumeClaimInStatus returns true if the given PersistentVolumeClaim is in the given status phase
func IsPersistentVolumeInStatus ¶ added in v0.41.24
func IsPersistentVolumeInStatus(pv *corev1.PersistentVolume, pvStatusPhase *corev1.PersistentVolumePhase) bool
IsPersistentVolumeInStatus returns true if the given PersistentVolume is in the given status phase
func IsPodAvailable ¶ added in v0.13.21
IsPodAvailable returns true if the all of the containers within the pod are ready and started
func IsServiceAvailable ¶ added in v0.13.16
IsServiceAvailable returns true if the service endpoint is ready to accept traffic. Note that for Minikube, this function is moot as all services, even LoadBalancer, is available immediately.
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.TestingT, 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.TestingT, options *KubectlOptions, configPath string) error
KubectlApplyE will take in a file path and apply it to the cluster targeted by KubectlOptions.
func KubectlApplyFromKustomize ¶ added in v0.40.22
func KubectlApplyFromKustomize(t testing.TestingT, options *KubectlOptions, configPath string)
KubectlApplyFromKustomize will take in a kustomization directory path and apply it to the cluster targeted by KubectlOptions. If there are any errors, fail the test immediately.
func KubectlApplyFromKustomizeE ¶ added in v0.40.22
func KubectlApplyFromKustomizeE(t testing.TestingT, options *KubectlOptions, configPath string) error
KubectlApplyFromKustomizeE will take in a kustomization directory path and apply it to the cluster targeted by KubectlOptions.
func KubectlApplyFromString ¶ added in v0.13.16
func KubectlApplyFromString(t testing.TestingT, 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.TestingT, 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.TestingT, 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.TestingT, options *KubectlOptions, configPath string) error
KubectlDeleteE will take in a file path and delete it from the cluster targeted by KubectlOptions.
func KubectlDeleteFromKustomize ¶ added in v0.40.22
func KubectlDeleteFromKustomize(t testing.TestingT, options *KubectlOptions, configPath string)
KubectlDeleteFromKustomize will take in a kustomization directory path and delete it from the cluster targeted by KubectlOptions. If there are any errors, fail the test immediately.
func KubectlDeleteFromKustomizeE ¶ added in v0.40.22
func KubectlDeleteFromKustomizeE(t testing.TestingT, options *KubectlOptions, configPath string) error
KubectlDeleteFromKustomizeE will take in a kustomization directory path and delete it from the cluster targeted by KubectlOptions.
func KubectlDeleteFromString ¶ added in v0.13.16
func KubectlDeleteFromString(t testing.TestingT, 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.TestingT, 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 ListDaemonSets ¶ added in v0.19.6
func ListDaemonSets(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.DaemonSet
ListDaemonSets will look for daemonsets in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListDaemonSetsE ¶ added in v0.19.6
func ListDaemonSetsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.DaemonSet, error)
ListDaemonSetsE will look for daemonsets in the given namespace that match the given filters and return them.
func ListDeployments ¶ added in v0.41.21
func ListDeployments(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.Deployment
ListDeployments will look for deployments in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListDeploymentsE ¶ added in v0.41.21
func ListDeploymentsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.Deployment, error)
ListDeploymentsE will look for deployments in the given namespace that match the given filters and return them.
func ListEvents ¶ added in v0.43.6
func ListEvents(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Event
ListEvents will retrieve the Events in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListEventsE ¶ added in v0.43.6
func ListEventsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Event, error)
ListEventsE will retrieve the Events that match the given filters and return them.
func ListIngresses ¶ added in v0.14.5
func ListIngresses(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []networkingv1.Ingress
ListIngresses will look for Ingress resources in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListIngressesE ¶ added in v0.14.5
func ListIngressesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]networkingv1.Ingress, error)
ListIngressesE will look for Ingress resources in the given namespace that match the given filters and return them.
func ListIngressesV1Beta1 ¶ added in v0.34.0
func ListIngressesV1Beta1(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []networkingv1beta1.Ingress
ListIngressesV1Beta1 will look for Ingress resources in the given namespace that match the given filters and return them, using networking.k8s.io/v1beta1 API. This will fail the test if there is an error.
func ListIngressesV1Beta1E ¶ added in v0.34.0
func ListIngressesV1Beta1E(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]networkingv1beta1.Ingress, error)
ListIngressesV1Beta1E will look for Ingress resources in the given namespace that match the given filters and return them, using networking.k8s.io/v1beta1 API.
func ListJobs ¶ added in v0.36.7
func ListJobs(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []batchv1.Job
ListJobs will look for Jobs in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListJobsE ¶ added in v0.36.7
func ListJobsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]batchv1.Job, error)
ListJobsE will look for jobs in the given namespace that match the given filters and return them.
func ListPersistentVolumeClaims ¶ added in v0.41.25
func ListPersistentVolumeClaims(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.PersistentVolumeClaim
ListPersistentVolumeClaims will look for PersistentVolumeClaims in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListPersistentVolumeClaimsE ¶ added in v0.41.25
func ListPersistentVolumeClaimsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.PersistentVolumeClaim, error)
ListPersistentVolumeClaimsE will look for PersistentVolumeClaims in the given namespace that match the given filters and return them.
func ListPersistentVolumes ¶ added in v0.41.24
func ListPersistentVolumes(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.PersistentVolume
ListPersistentVolumes will look for PersistentVolumes in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListPersistentVolumesE ¶ added in v0.41.24
func ListPersistentVolumesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.PersistentVolume, error)
ListPersistentVolumesE will look for PersistentVolumes that match the given filters and return them.
func ListPods ¶ added in v0.13.28
func ListPods(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Pod
ListPods will look for pods in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListPodsE ¶ added in v0.13.28
func ListPodsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Pod, error)
ListPodsE will look for pods in the given namespace that match the given filters and return them.
func ListReplicaSets ¶ added in v0.32.12
func ListReplicaSets(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []appsv1.ReplicaSet
ListReplicaSets will look for replicasets in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListReplicaSetsE ¶ added in v0.32.12
func ListReplicaSetsE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]appsv1.ReplicaSet, error)
ListReplicaSetsE will look for replicasets in the given namespace that match the given filters and return them.
func ListServices ¶ added in v0.13.28
func ListServices(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) []corev1.Service
ListServices will look for services in the given namespace that match the given filters and return them. This will fail the test if there is an error.
func ListServicesE ¶ added in v0.13.28
func ListServicesE(t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions) ([]corev1.Service, error)
ListServicesE will look for services in the given namespace that match the given filters and return them.
func LoadApiClientConfigE ¶ added in v0.13.16
func LoadApiClientConfigE(configPath string, contextName string) (*restclient.Config, error)
LoadApiClientConfigE 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.TestingT, 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
func RunKubectlAndGetOutputE(t testing.TestingT, options *KubectlOptions, args ...string) (string, error)
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.TestingT, 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 UnmarshalJSONPath ¶ added in v0.30.16
UnmarshalJSONPath allows you to use an arbitrary JSONPath string to query a json blob and unmarshal the resulting output into a go object. Note that the output will always be a list. That means that if you query a single object, the output will be a list of single element, not the element itself. However, if the json path maps to a list, then the output will be that list. Example:
jsonBlob := []byte(`{"key": {"data": [1,2,3]}}`) jsonPath := "{.key.data[*]}" var output []int UnmarshalJSONPath(t, jsonBlob, jsonPath, &output) // output is []int{1,2,3}
This will fail the test if there is an error.
func UnmarshalJSONPathE ¶ added in v0.30.16
func UnmarshalJSONPathE(t testing.TestingT, jsonData []byte, jsonpathStr string, output interface{}) error
UnmarshalJSONPathE allows you to use an arbitrary JSONPath string to query a json blob and unmarshal the resulting output into a go object. Note that the output will always be a list. That means that if you query a single object, the output will be a list of single element, not the element itself. However, if the json path maps to a list, then the output will be that list. Example:
jsonBlob := []byte(`{"key": {"data": [1,2,3]}}`) jsonPath := "{.key.data[*]}" var output []int UnmarshalJSONPathE(t, jsonBlob, jsonPath, &output) => output = []int{1,2,3}
func UpsertConfigContext ¶ added in v0.13.24
func UpsertConfigContext(config *api.Config, contextName string, clusterName string, userName string)
UpsertConfigContext will update or insert a new context to the provided config, binding the provided cluster to the provided user.
func WaitUntilAllNodesReady ¶
func WaitUntilAllNodesReady(t testing.TestingT, options *KubectlOptions, retries int, sleepBetweenRetries time.Duration)
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 ¶
func WaitUntilAllNodesReadyE(t testing.TestingT, options *KubectlOptions, retries int, sleepBetweenRetries time.Duration) error
WaitUntilAllNodesReadyE continuously polls the Kubernetes cluster until all nodes in the cluster reach the ready state, or runs out of retries.
func WaitUntilConfigMapAvailable ¶ added in v0.41.6
func WaitUntilConfigMapAvailable(t testing.TestingT, options *KubectlOptions, configMapName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilConfigMapAvailable waits until the configmap is present on the cluster in cases where it is not immediately available (for example, when using ClusterIssuer to request a certificate).
func WaitUntilDeploymentAvailable ¶ added in v0.41.21
func WaitUntilDeploymentAvailable(t testing.TestingT, options *KubectlOptions, deploymentName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilDeploymentAvailableE waits until all pods within the deployment are ready and started, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error.
func WaitUntilDeploymentAvailableE ¶ added in v0.41.21
func WaitUntilDeploymentAvailableE( t testing.TestingT, options *KubectlOptions, deploymentName string, retries int, sleepBetweenRetries time.Duration, ) error
WaitUntilDeploymentAvailableE waits until all pods within the deployment are ready and started, retrying the check for the specified amount of times, sleeping for the provided duration between each try.
func WaitUntilIngressAvailable ¶ added in v0.14.5
func WaitUntilIngressAvailable(t testing.TestingT, options *KubectlOptions, ingressName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilIngressAvailable waits until the Ingress resource has an endpoint provisioned for it.
func WaitUntilIngressAvailableV1Beta1 ¶ added in v0.34.0
func WaitUntilIngressAvailableV1Beta1(t testing.TestingT, options *KubectlOptions, ingressName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilIngressAvailableV1Beta1 waits until the Ingress resource has an endpoint provisioned for it, using networking.k8s.io/v1beta1 API.
func WaitUntilJobSucceed ¶ added in v0.36.7
func WaitUntilJobSucceed(t testing.TestingT, options *KubectlOptions, jobName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilJobSucceed waits until requested job is suceeded, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error or if the check times out.
func WaitUntilJobSucceedE ¶ added in v0.36.7
func WaitUntilJobSucceedE(t testing.TestingT, options *KubectlOptions, jobName string, retries int, sleepBetweenRetries time.Duration) error
WaitUntilJobSucceedE waits until requested job is succeeded, retrying the check for the specified amount of times, sleeping for the provided duration between each try.
func WaitUntilNetworkPolicyAvailable ¶ added in v0.41.4
func WaitUntilNetworkPolicyAvailable(t testing.TestingT, options *KubectlOptions, networkPolicyName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilNetworkPolicyAvailable waits until the networkpolicy is present on the cluster in cases where it is not immediately available (for example, when using ClusterIssuer to request a certificate).
func WaitUntilNumPodsCreated ¶ added in v0.13.28
func WaitUntilNumPodsCreated( t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions, desiredCount int, retries int, sleepBetweenRetries time.Duration, )
WaitUntilNumPodsCreated waits until the desired number of pods are created that match the provided filter. This will retry the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if the retry times out.
func WaitUntilNumPodsCreatedE ¶ added in v0.13.28
func WaitUntilNumPodsCreatedE( t testing.TestingT, options *KubectlOptions, filters metav1.ListOptions, desiredCount int, retries int, sleepBetweenRetries time.Duration, ) error
WaitUntilNumPodsCreatedE waits until the desired number of pods are created that match the provided filter. This will retry the check for the specified amount of times, sleeping for the provided duration between each try.
func WaitUntilPersistentVolumeClaimInStatus ¶ added in v0.41.25
func WaitUntilPersistentVolumeClaimInStatus(t testing.TestingT, options *KubectlOptions, pvcName string, pvcStatusPhase *corev1.PersistentVolumeClaimPhase, retries int, sleepBetweenRetries time.Duration)
WaitUntilPersistentVolumeClaimInStatus waits until the given PersistentVolumeClaim is the given status phase, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error.
func WaitUntilPersistentVolumeClaimInStatusE ¶ added in v0.41.25
func WaitUntilPersistentVolumeClaimInStatusE(t testing.TestingT, options *KubectlOptions, pvcName string, pvcStatusPhase *corev1.PersistentVolumeClaimPhase, retries int, sleepBetweenRetries time.Duration) error
WaitUntilPersistentVolumeClaimInStatusE waits until the given PersistentVolumeClaim is the given status phase, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error.
func WaitUntilPersistentVolumeInStatus ¶ added in v0.41.24
func WaitUntilPersistentVolumeInStatus(t testing.TestingT, options *KubectlOptions, pvName string, pvStatusPhase *corev1.PersistentVolumePhase, retries int, sleepBetweenRetries time.Duration)
WaitUntilPersistentVolumeInStatus waits until the given Persistent Volume is the given status phase, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error.
func WaitUntilPersistentVolumeInStatusE ¶ added in v0.41.24
func WaitUntilPersistentVolumeInStatusE( t testing.TestingT, options *KubectlOptions, pvName string, pvStatusPhase *corev1.PersistentVolumePhase, retries int, sleepBetweenRetries time.Duration, ) error
WaitUntilPersistentVolumeInStatusE waits until the given PersistentVolume is in the given status phase, retrying the check for the specified amount of times, sleeping for the provided duration between each try.
func WaitUntilPodAvailable ¶ added in v0.13.21
func WaitUntilPodAvailable(t testing.TestingT, options *KubectlOptions, podName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilPodAvailable waits until all of the containers within the pod are ready and started, retrying the check for the specified amount of times, sleeping for the provided duration between each try. This will fail the test if there is an error or if the check times out.
func WaitUntilPodAvailableE ¶ added in v0.13.21
func WaitUntilPodAvailableE(t testing.TestingT, options *KubectlOptions, podName string, retries int, sleepBetweenRetries time.Duration) error
WaitUntilPodAvailableE waits until all of the containers within the pod are ready and started, retrying the check for the specified amount of times, sleeping for the provided duration between each try.
func WaitUntilSecretAvailable ¶ added in v0.30.18
func WaitUntilSecretAvailable(t testing.TestingT, options *KubectlOptions, secretName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilSecretAvailable waits until the secret is present on the cluster in cases where it is not immediately available (for example, when using ClusterIssuer to request a certificate).
func WaitUntilServiceAvailable ¶ added in v0.13.16
func WaitUntilServiceAvailable(t testing.TestingT, options *KubectlOptions, serviceName string, retries int, sleepBetweenRetries time.Duration)
WaitUntilServiceAvailable waits until the service endpoint is ready to accept traffic.
Types ¶
type DeploymentNotAvailable ¶ added in v0.41.21
type DeploymentNotAvailable struct {
// contains filtered or unexported fields
}
DeploymentNotAvailable is returned when a Kubernetes deployment is not yet available to accept traffic.
func NewDeploymentNotAvailableError ¶ added in v0.41.21
func NewDeploymentNotAvailableError(deploy *appsv1.Deployment) DeploymentNotAvailable
NewDeploymentNotAvailableError returnes a DeploymentNotAvailable struct when Kubernetes deems a deployment is not available
func (DeploymentNotAvailable) Error ¶ added in v0.41.21
func (err DeploymentNotAvailable) Error() string
Error is a simple function to return a formatted error message as a string
type DesiredNumberOfPodsNotCreated ¶ added in v0.13.28
type DesiredNumberOfPodsNotCreated struct { Filter metav1.ListOptions DesiredCount int }
DesiredNumberOfPodsNotCreated is returned when the number of pods matching a filter condition does not match the desired number of Pods.
func (DesiredNumberOfPodsNotCreated) Error ¶ added in v0.13.28
func (err DesiredNumberOfPodsNotCreated) Error() string
Error is a simple function to return a formatted error message as a string
type IngressNotAvailable ¶ added in v0.14.5
type IngressNotAvailable struct {
// contains filtered or unexported fields
}
IngressNotAvailable is returned when a Kubernetes service is not yet available to accept traffic.
func (IngressNotAvailable) Error ¶ added in v0.14.5
func (err IngressNotAvailable) Error() string
Error is a simple function to return a formatted error message as a string
type IngressNotAvailableV1Beta1 ¶ added in v0.34.0
type IngressNotAvailableV1Beta1 struct {
// contains filtered or unexported fields
}
IngressNotAvailableV1Beta1 is returned when a Kubernetes service is not yet available to accept traffic.
func (IngressNotAvailableV1Beta1) Error ¶ added in v0.34.0
func (err IngressNotAvailableV1Beta1) Error() string
Error is a simple function to return a formatted error message as a string
type JSONPathExtractJSONPathErr ¶ added in v0.30.16
type JSONPathExtractJSONPathErr struct {
// contains filtered or unexported fields
}
JSONPathExtractJSONPathErr is returned when the jsonpath unmarshal routine fails to extract the given JSON path from the JSON blob.
func (JSONPathExtractJSONPathErr) Error ¶ added in v0.30.16
func (err JSONPathExtractJSONPathErr) Error() string
type JSONPathMalformedJSONErr ¶ added in v0.30.16
type JSONPathMalformedJSONErr struct {
// contains filtered or unexported fields
}
JSONPathMalformedJSONErr is returned when the jsonpath unmarshal routine fails to parse the given JSON blob.
func (JSONPathMalformedJSONErr) Error ¶ added in v0.30.16
func (err JSONPathMalformedJSONErr) Error() string
type JSONPathMalformedJSONPathErr ¶ added in v0.30.16
type JSONPathMalformedJSONPathErr struct {
// contains filtered or unexported fields
}
JSONPathMalformedJSONPathErr is returned when the jsonpath unmarshal routine fails to parse the given JSON path string.
func (JSONPathMalformedJSONPathErr) Error ¶ added in v0.30.16
func (err JSONPathMalformedJSONPathErr) Error() string
type JSONPathMalformedJSONPathResultErr ¶ added in v0.30.16
type JSONPathMalformedJSONPathResultErr struct {
// contains filtered or unexported fields
}
JSONPathMalformedJSONPathResultErr is returned when the jsonpath unmarshal routine fails to unmarshal the resulting data from extraction.
func (JSONPathMalformedJSONPathResultErr) Error ¶ added in v0.30.16
func (err JSONPathMalformedJSONPathResultErr) Error() string
type JobNotSucceeded ¶ added in v0.36.7
type JobNotSucceeded struct {
// contains filtered or unexported fields
}
JobNotSucceeded is returned when a Kubernetes job is not Succeeded
func NewJobNotSucceeded ¶ added in v0.36.7
func NewJobNotSucceeded(job *batchv1.Job) JobNotSucceeded
NewJobNotSucceeded returnes a JobNotSucceeded when the status of the job is not Succeeded
func (JobNotSucceeded) Error ¶ added in v0.36.7
func (err JobNotSucceeded) Error() string
Error is a simple function to return a formatted error message as a string
type KubeResourceType ¶ added in v0.13.28
type KubeResourceType int
KubeResourceType is an enum representing known resource types that can support port forwarding
const ( // ResourceTypePod is a k8s pod kind identifier ResourceTypePod KubeResourceType = iota // ResourceTypeDeployment is a k8s deployment kind identifier ResourceTypeDeployment // ResourceTypeService is a k8s service kind identifier ResourceTypeService )
func (KubeResourceType) String ¶ added in v0.13.28
func (resourceType KubeResourceType) String() string
type KubectlOptions ¶ added in v0.13.16
type KubectlOptions struct { ContextName string ConfigPath string Namespace string Env map[string]string InClusterAuth bool Logger *logger.Logger }
KubectlOptions represents common options necessary to specify for all Kubectl calls
func NewKubectlOptions ¶ added in v0.13.16
func NewKubectlOptions(contextName string, configPath string, namespace string) *KubectlOptions
NewKubectlOptions will return a pointer to new instance of KubectlOptions with the configured options
func NewKubectlOptionsWithInClusterAuth ¶ added in v0.35.3
func NewKubectlOptionsWithInClusterAuth() *KubectlOptions
NewKubectlOptionsWithInClusterAuth will return a pointer to a new instance of KubectlOptions with the InClusterAuth field set to true
func (*KubectlOptions) GetConfigPath ¶ added in v0.13.28
func (kubectlOptions *KubectlOptions) GetConfigPath(t testing.TestingT) (string, error)
GetConfigPath will return a sensible default if the config path is not set on the options.
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
NewMalformedNodeIDError returns a MalformedNodeID struct when Kubernetes deems that a NodeID is malformed
func (MalformedNodeID) Error ¶ added in v0.13.16
func (err MalformedNodeID) Error() string
Error is a simple function to return a formatted error message as a 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
NewNoNodesInKubernetesError returns a NoNodesInKubernetes struct when it is deemed that there are no Kubernetes nodes registered
func (NoNodesInKubernetes) Error ¶ added in v0.13.16
func (err NoNodesInKubernetes) Error() string
Error is a simple function to return a formatted error message as a 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
NewNodeHasNoHostnameError returns a NodeHasNoHostname struct when it is deemed that the provided node has no hostname
func (NodeHasNoHostname) Error ¶ added in v0.13.16
func (err NodeHasNoHostname) Error() string
Error is a simple function to return a formatted error message as a string
type PersistentVolumeClaimNotInStatus ¶ added in v0.41.25
type PersistentVolumeClaimNotInStatus struct {
// contains filtered or unexported fields
}
PersistentVolumeClaimNotInStatus is returned when a Kubernetes PersistentVolumeClaim is not in the expected status phase
func NewPersistentVolumeClaimNotInStatusError ¶ added in v0.41.25
func NewPersistentVolumeClaimNotInStatusError(pvc *corev1.PersistentVolumeClaim, pvcStatusPhase *corev1.PersistentVolumeClaimPhase) PersistentVolumeClaimNotInStatus
NewPersistentVolumeClaimNotInStatusError returns a PersistentVolumeClaimNotInStatus struct when the given PersistentVolumeClaim is not in the expected status phase
func (PersistentVolumeClaimNotInStatus) Error ¶ added in v0.41.25
func (err PersistentVolumeClaimNotInStatus) Error() string
Error is a simple function to return a formatted error message as a string
type PersistentVolumeNotInStatus ¶ added in v0.41.24
type PersistentVolumeNotInStatus struct {
// contains filtered or unexported fields
}
PersistentVolumeNotInStatus is returned when a Kubernetes PersistentVolume is not in the expected status phase
func NewPersistentVolumeNotInStatusError ¶ added in v0.41.24
func NewPersistentVolumeNotInStatusError(pv *corev1.PersistentVolume, pvStatusPhase *corev1.PersistentVolumePhase) PersistentVolumeNotInStatus
NewPersistentVolumeNotInStatusError returns a PersistentVolumeNotInStatus struct when the given Persistent Volume is not in the expected status phase
func (PersistentVolumeNotInStatus) Error ¶ added in v0.41.24
func (err PersistentVolumeNotInStatus) Error() string
Error is a simple function to return a formatted error message as a string
type PodNotAvailable ¶ added in v0.13.21
type PodNotAvailable struct {
// contains filtered or unexported fields
}
PodNotAvailable is returned when a Kubernetes service is not yet available to accept traffic.
func NewPodNotAvailableError ¶ added in v0.13.21
func NewPodNotAvailableError(pod *corev1.Pod) PodNotAvailable
NewPodNotAvailableError returnes a PodNotAvailable struct when Kubernetes deems a pod is not available
func (PodNotAvailable) Error ¶ added in v0.13.21
func (err PodNotAvailable) Error() string
Error is a simple function to return a formatted error message as a string
type ServiceAccountTokenNotAvailable ¶ added in v0.13.24
type ServiceAccountTokenNotAvailable struct {
Name string
}
ServiceAccountTokenNotAvailable is returned when a Kubernetes ServiceAccount does not have a token provisioned yet.
func (ServiceAccountTokenNotAvailable) Error ¶ added in v0.13.24
func (err ServiceAccountTokenNotAvailable) Error() string
Error is a simple function to return a formatted error message as a 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
NewServiceNotAvailableError returnes a ServiceNotAvailable struct when Kubernetes deems a service is not available
func (ServiceNotAvailable) Error ¶ added in v0.13.16
func (err ServiceNotAvailable) Error() string
Error is a simple function to return a formatted error message as a string
type Tunnel ¶ added in v0.13.28
type Tunnel struct {
// contains filtered or unexported fields
}
Tunnel is the main struct that configures and manages port forwading tunnels to Kubernetes resources.
func NewTunnel ¶ added in v0.13.28
func NewTunnel(kubectlOptions *KubectlOptions, resourceType KubeResourceType, resourceName string, local int, remote int) *Tunnel
NewTunnel creates a new tunnel with NewTunnelWithLogger, setting logger.Terratest as the logger.
func NewTunnelWithLogger ¶ added in v0.30.10
func NewTunnelWithLogger( kubectlOptions *KubectlOptions, resourceType KubeResourceType, resourceName string, local int, remote int, logger logger.TestLogger, ) *Tunnel
NewTunnelWithLogger will create a new Tunnel struct with the provided logger. Note that if you use 0 for the local port, an open port on the host system will be selected automatically, and the Tunnel struct will be updated with the selected port.
func (*Tunnel) Close ¶ added in v0.13.28
func (tunnel *Tunnel) Close()
Close disconnects a tunnel connection by closing the StopChan, thereby stopping the goroutine.
func (*Tunnel) ForwardPort ¶ added in v0.13.28
ForwardPort opens a tunnel to a kubernetes resource, as specified by the provided tunnel struct. This will fail the test if there is an error attempting to open the port.
type UnknownKubeResourceType ¶ added in v0.13.28
type UnknownKubeResourceType struct {
ResourceType KubeResourceType
}
UnknownKubeResourceType is returned if the given resource type does not match the list of known resource types.
func (UnknownKubeResourceType) Error ¶ added in v0.13.28
func (err UnknownKubeResourceType) 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
NewUnknownServicePortError returns an UnknownServicePort struct when it is deemed that Kuberenetes does not know of the provided Service Port
func (UnknownServicePort) Error ¶ added in v0.13.16
func (err UnknownServicePort) Error() string
Error is a simple function to return a formatted error message as a 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
NewUnknownServiceTypeError returns an UnknownServiceType struct when is it deemed that Kubernetes does not know the service type provided
func (UnknownServiceType) Error ¶ added in v0.13.16
func (err UnknownServiceType) Error() string
Error is a simple function to return a formatted error message as a string
Source Files ¶
- client.go
- cluster_role.go
- config.go
- configmap.go
- daemonset.go
- deployment.go
- errors.go
- event.go
- ingress.go
- job.go
- jsonpath.go
- k8s.go
- kubectl.go
- kubectl_options.go
- minikube.go
- namespace.go
- networkpolicy.go
- node.go
- persistent_volume.go
- persistent_volume_claim.go
- pod.go
- replicaset.go
- role.go
- secret.go
- self_subject_access_review.go
- service.go
- service_account.go
- tunnel.go
- version.go