Skip to content

xinjixi/thousandeyes-kubernetes-operator

 
 

Repository files navigation

ThousandEyes Kubernetes Operator

published Language

ThousandEyes Kubernetes Operator is a Kubernetes operator used to manage ThousandEyes Tests deployed via Kubernetes cluster. It is built using the Operator SDK, which is part of the Operator Framework.

Table of Contents

Supported Test Types

ThousandEyes Kubernetes Operator supports managing the following test types.

More types will be supported in the future.

Installation

Prerequisites

  1. Access to working kubernetes cluster (version >=1.18.0) and local kubectl cli. Docker desktop kubernetes, Minikube or kind are some of popular options to setup local kubernetes cluster.
  2. Trial account for ThousandEyes

Deploy ThousandEyes Kubernetes Operator

  1. Clone the project

    git clone https://github.com/CiscoDevNet/thousandeyes-kubernetes-operator.git
    cd thousandeyes-kubernetes-operator
    
  2. Get OAuth Bearer Token from ThousandEyes dashboard

    OAuth Bearer Token

    If this token has been generated, you can get it from your admin or revoke it to create a new one.

  3. Update the OAuth bearer token

    Encode the token in base64

    echo -n "YOUR_OAUTH_BEARER_TOKEN" | base64
    

    Modify OAuthBearerToken (base64 encoded) in config/deploy/thousandeyes_kubernetes_operator.yaml

  4. Install the operator

    kubectl apply -f config/deploy/thousandeyes_kubernetes_operator.yaml
    
  5. Verify installation status

    i. Check ThousandEyes Kubernetes Operator pod status

    kubectl get pods | grep thousandeyes
    
      NAME                                                            READY   STATUS    RESTARTS   AGE
      devnet-thousandeyes-kubernetes-operator-564b5d75d-jllzk         1/1     Running   0          108s
    

    ii. Check ThousandEyes CRD status

    kubectl get crd | grep thousandeyes
    
      NAME                                                  CREATED AT
      annotationmonitorings.thousandeyes.devnet.cisco.com   2021-07-07T15:44:40Z
      httpservertests.thousandeyes.devnet.cisco.com         2021-07-07T15:44:41Z
      pageloadtests.thousandeyes.devnet.cisco.com           2021-07-07T15:44:42Z
      webtransactiontests.thousandeyes.devnet.cisco.com     2021-07-07T15:44:44Z 
    

Quick Start

Let`s run a Nginx web app, then create a Page Load test to monitor this app

  1. Create a Nginx web app

    kubectl apply -f config/samples/nginx.yaml
    
  2. Check the Nginx pod status

    kubectl get pods -A | grep nginx
    default       nginx-6976ddb986-rxqv6          1/1     Running    0        12s
    
  3. Expose Nginx service to Internet Using ngrok

    kubectl apply -f config/samples/ngrok.yaml  
    
  4. Check the ngrok pod status

    kubectl get pods -A | grep ngrok
    default       ngrok-5dfd559764-zx9r7          1/1     Running   0         7s
    
  5. Get the public URL of this web app

    ./config/samples/public_url.sh
    

    Your public URL for Nginx web app is similar to:

    https://9c5f-64-104-125-230.eu.ngrok.io
    
  6. Access this app

    Open your favorite browser and navigate to the public URL.

    You should see the Nginx welcome page which means you have run the app successfully.

  7. Update your public URL in config/samples/pageload_cr.yaml

  8. Apply the page load test CR

    kubectl apply -f config/samples/pageload_cr.yaml
    
  9. Go to ThousandEyes dashboard

    You will find this test on ThousandEyes dashboard. Page Load Test

Advanced Usage

For advanced usage, please refer to the following documentations:

  1. Create a Kubernetes Custom Resource
  2. Annotate Kubernetes Ingress / Service

Reference

  1. ThousandEyes Getting Started
  2. ThousandEyes Test MetaData

About

A Kubernetes operator to manage ThousandEyes tests

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 86.9%
  • Makefile 11.4%
  • Dockerfile 1.2%
  • Shell 0.5%