Skip to main content

Kubernetes Handler module for AUTOQUBE load testing

Project description

This library contains:

  • Objects for
    • Creating, updating and deleting a Kubernetes cluster.

    • Deploying various objects on Kubernetes cluster.

    • Running Jmeter Load tests on Kubernetes cluster.

Table of Contents

Installation

python-autoqube_kubernetes is compatible with Python 3.x. It is listed on PyPi as ‘autoqube_kubernetes’. The recommended way to install is via pip:

pip install autoqube_kubernetes

Prerequisites

  • kops: kops is a command line utility tool required to manage kubernetes cluster. The installation information is available at kops installation.

  • kubectl: kubectl is a command line utility tool required to manage various objects on existing kubernetes cluster. The installation information is available at kubectl installation.

  • dns-zone: A public hosted zone should be created for AWS which would be the same as the name of the cluster. Please refer creating dns-zone.

KubernetesHandler

KubernetesHandler object will create, delete cluster and run load tests.

Kubernetes cluster

Currently the cluster creation is supported only on AWS cloud platform.

For creating a new Kubernetes cluster, the following parameters are needed:

  • cloud_provider : The cloud provider on which the cluster needs to be created.

  • cluster_config : The configuration details for the cluster.

  • env_config : The environment configuration for storage of cloud provider essential keys.

A typical cluster configuration file would be like

config = {
    "cloud_provider": "AWS",
    "cluster_config": {
        'node-count':  2,
        'master-size': 't2.small',
        'master-zones': 'us-west-2a',
        'zones':  'us-west-2a',
        'name': 'aq.autoqube.io',
        'node-size': 't2.small',
        'ssh-public-key': '/Users/autoqube/.ssh/id_rsa.pub',
        'dns-zone': 'aq.autoqube.io',
    },
    "env_config": {
        'AWS_ACCESS_KEY_ID': '*********************',
        'AWS_SECRET_ACCESS_KEY': '***********************',
        'AWS_REGION': 'us-west-2',
        'KUBECONFIG': '/Users/autoqube/kubernetes/aq.autoqube.io/kubeconfig',
        'KOPS_STATE_STORE': 's3://agent-kops-store'
    },
}

For better understanding or debugging of various processes running behind, setup a logging functionality.

from autoqube_kubernetes import KubernetesHandler
import config
import logging

root_logger = logging.getLogger()
console_handler = logging.StreamHandler()

root_logger.setLevel(logging.INFO)
root_logger.addHandler(console_handler)

kubernetes_handler = KubernetesHandler(config)
kubernetes_handler.create_cluster() # Creation of cluster with the above configuration.
# kubeconfig will be stored in the path specified in the configuration.
kubernetes_handler.delete_cluster() # Deletion of cluster with the above configuration.

Load Testing

  • Currently only ‘jmeter’ load testing is supported on kubernetes cluster.

  • Load testing using jmeter on a kubernetes cluster has been inspired from the following blog.

  • The results of the load test can be visually seen on grafana service dashboards.

  • The templates for deployment of various kubernetes objects required for jmeter load testing can be downloaded from Jmeter Load Test Templates.

  • Extract the downloaded templates and place them in location accessible by python.

  • The following parameters are needed for load testing
    • load_config - The configuration details about type of load test and the templates for kubernetes objects.

    • test_file_config - The configuration details about the test files for load test.

A sample configuration would be like

load_config = {
     'test_type': 'jmeter',
     'templates_path': '/Users/autoqube/kubernetes/load_testing/k8s_templates/jmeter/'
 }
 test_file_config = {
     'test_files': ['./tmp/sample.jmx', './tmp/sample.csv']
 }

KubernetesHandler will create the necessary objects on cluster and run load tests.

 # After creation of kubernetes cluster using 'kubernetes_handler'.
 kubernetes_handler.create_load_test(load_config)
 # Creates pods, deployments, services and other objects required for
 # load testing on cluster.

 kubernetes_handler.run_load_test(test_file_config)
 # Run load tests using the test files provided in the configuration

 kubernetes_handler.destroy_load_test(load_config)
# Once the tests are complete, all the resources created can be destroyed
# and only empty cluster will remain.

KubernetesClient

KubernetesClient can be used to perform various actions on existing cluster like:
  • Creating objects from yaml files

  • Destroying resources on cluster

  • Listing all the pods and services on cluster

  • Executing commands on a specific pod

  • Copy files to a specific pod

kubeconfig of a cluster is required.

from autoqube_kubernetes import KubernetesClient

kubernetes_client = KubernetesClient('/path/to/kubeconfig')
namespace = 'autoqube' # Namespace on which the operations are to be performed.
kubernetes_client.create_object('/path/to/yaml', namespace) # Creates object from yaml file.
kubernetes_client.get_pod_list(namespace) # Lists all the pods.
kubernetes_client.get_service_list(namespace) # Lists all the services.
podname = 'autoqube-jmeter'
commands_list = ['cd ~', 'ls']
kubernetes_client.execute_commands(podname, commands_list, namespace) # Executes the commands on a specific pod.
kubernetes_client.destroy_all_resources(namespace) # Destroys all resources in a given namespace.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autoqube_kubernetes-1.0.2.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

autoqube_kubernetes-1.0.2-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file autoqube_kubernetes-1.0.2.tar.gz.

File metadata

  • Download URL: autoqube_kubernetes-1.0.2.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.2

File hashes

Hashes for autoqube_kubernetes-1.0.2.tar.gz
Algorithm Hash digest
SHA256 cccd9367987169790065115b6bfde19dcca1f47ccb3ed6c848c1a427553f039d
MD5 9623f7388ec6a3823dab7f6f27712238
BLAKE2b-256 1a01867d775782aae79fa06092ba28c7d01e6111a36febe9391fff5ffc9b365c

See more details on using hashes here.

File details

Details for the file autoqube_kubernetes-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: autoqube_kubernetes-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.2

File hashes

Hashes for autoqube_kubernetes-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fe39f17f0e465596b1dc56ae26152446fd7769c20d745405b853b78d92743d66
MD5 3fe97d0f946a56e9a6e1b121b00c2b00
BLAKE2b-256 5ea6fe90a312d64ce13c02626c840f4f6aa24fbc3e00759f7a6b468b87e50319

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page