In this file you'll find all the references needed for you to start contributing code to the HTTP Add-on project.
To get started, first fork this repository to your account. You'll need to have the following tools installed:
It's recommended to have a running Kubernetes cluster to test the development, there are faster approaches using public clouds like:
- Azure with AKS
- Google Cloud with GKE
- AWS with EKS
- Digital Ocean
These providers will let you deploy a simple and quick K8S cluster, however, they're paid. If you don't want to pay for the service, you can host your own with a series of amazing tools like:
Follow the install instructions to check out how to install and get this add-on up and running.
This project uses Mage as opposed to Make because it's way faster to build and push images, as well as to run tests and other common tasks. Please install version v1.11.0 or above to have access to the task runner.
The Magefile located in the root directory has targets useful for the whole project. There is another magefile in the operator directory, which has targets more specific to the operator module.
The most useful and common commands from the root directory are listed below. Please see the "In the Operator Directory" section for the operator-specific targets. Whther you're in the root or the operator directory, you can always run the following general helper commands:
mage -l
: shows a list of all available commandsmage -h <command>
: shows command-specific detailsmage -h
: shows the general help
All commands are case insensitive, so
buildAll
andbuildall
are the same.
mage build
: Builds all the binaries for local testing.mage test
: Tests the entire codebasemage dockerbuild
: Builds all docker images- Please see the below "Environment Variables" section for more information on this command
mage dockerpush
: Pushes all docker images, without building them first- Please see the below "Environment Variables" section for more information on this command
mage Manifests
: Builds all the manifest files for Kubernetes, it's important to build after every change to a Kustomize annotation.mage All
: Generates the operator.
Some of the above commands require several environment variables to be set. You should set them once in your environment to ensure that you can run these targets. We recommend using direnv to set these environment variables once, so that you don't need to remember to do it.
KEDAHTTP_SCALER_IMAGE
: the fully qualified name of the scaler image. This is used to build, push, and install the scaler into a Kubernetes cluster (required)KEDAHTTP_INTERCEPTOR_IMAGE
: the fully qualified name of the interceptor image. This is used to build, push, and install the interceptor into a Kubernetes cluster (required)KEDAHTTP_OPERATOR_IMAGE
: the fully qualified name of the operator image. This is used to build, push, and install the operator into a Kubernetes cluster (required)KEDAHTTP_NAMESPACE
: the Kubernetes namespace to which to install the add on and other required components (optional, defaults tokedahttp
)
Suffix any
*_IMAGE
variable with<keda-git-sha>
and the build system will automatically replace it withsha-$(git rev-parse --short HEAD)
The below tips assist with debugging, introspecting, or observing the current state of a running HTTP addon installation. They involve making network requests to cluster-internal (i.e. ClusterIP
Service
s).
There are generally two ways to communicate with these services. In the following sections, we'll assume you are using the kubectl proxy
method, but the most instructions will be simple enough to adapt to other methods.
We'll also assume that you have set the $NAMESPACE
environment variable in your environment to the namespace in which the HTTP addon is installed.
kubectl proxy
establishes an authenticated connection to the Kubernetes API server, runs a local web server, and lets you execute REST API requests against localhost
as if you were executing them against the Kubernetes API server.
To establish one, run the following command in a separate terminal window:
kubectl proxy -p 9898
You'll keep this proxy running throughout all of your testing, so make sure you keep this terminal window open.
The second way to communicate with these services is almost the opposite as the previous. Instead of bringing the API server to you with kubectl proxy
, you'll be creating an execution environment closer to the API server.
First, launch a container with an interactive shell in Kubernetes with the following command (substituting your namespace in for $NAMESPACE
):
kubectl run -it alpine --image=alpine -n $NAMESPACE
Then, when you see a curl
command below, replace the entire path up to and including the /proxy/
segment with just the name of the service and its port. For example, curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/routing_ping
would just become curl -L keda-add-ons-http-interceptor-admin:9090/routing_ping
Any interceptor pod has both a proxy and admin server running inside it. The proxy server is where users send HTTP requests to, and the admin server is for internal use. The admin server runs on a separate port, fronted by a separate Service
.
- Prompt the interceptor to re-fetch the routing table from the interceptor, or
- Print out the interceptor's current routing table (useful for debugging)
Run the following curl
command to get the running configuration of the interceptor:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/config
To prompt the interceptor to fetch the routing table, then print it out:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/routing_ping
Or, to just ask the interceptor to print out its routing table:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/routing_table
To fetch the state of an individual interceptor's pending HTTP request queue:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/queue
To fetch the current state of an individual interceptor's deployment queue:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-interceptor-admin:9090/proxy/deployments
The output of this command is a JSON map where the keys are the deployment name and the values are the latest known number of replicas for that deployment.
Like the interceptor, the operator has an admin server that has HTTP endpoints against which you can run curl
commands.
Run the following curl
command to get the running configuration of the operator:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-operator-admin:9090/proxy/config
The operator has a similar /routing_table
endpoint as the interceptor. That data returned from this endpoint, however, is the source of truth. Interceptors fetch their copies of the routing table from this endpoint. Accessing data from this endpoint is similar.
Fetch the operator's routing table with the following command:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-operator-admin:9090/proxy/routing_table
Like the interceptor, the scaler has an HTTP admin interface against which you can run curl
commands.
Run the following curl
command to get the running configuration of the interceptor:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-external-scaler:9091/proxy/config
The external scaler fetches pending queue counts from each interceptor in the system, aggregates and stores them, and then returns them to KEDA when requested. KEDA fetches these data via the standard gRPC external scaler interface.
For convenience, the scaler also provides a plain HTTP server from which you can also fetch these metrics. Fetch the queue counts from this HTTP server with the following command:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-external-scaler:9091/proxy/queue
Alternatively, you can prompt the scaler to fetch counts from all interceptors, aggregate, store, and return counts:
curl -L localhost:9898/api/v1/namespaces/$NAMESPACE/services/keda-add-ons-http-external-scaler:9091/proxy/queue_ping