Kubernetes Integration: Deploy Ratl Load Injectors On-Premises
Integrate Ratl with your Kubernetes cluster to deploy load injectors directly within your infrastructure. Leverage this setup to reduce resource costs while maintaining full control over your testing environment.
Guide 1: Setting up Ratl Load Injectors Using User-Provided Kubeconfig
This documentation provides a step-by-step guide for setting up Ratl on-premise load injectors using a user-provided kubeconfig file. The guide details how to configure the kubeconfig for GCP, AWS, and Azure, including generating the required access tokens.
Using a User-Provided Kubeconfig
1. Prerequisites
The user must provide a kubeconfig file for their cluster.
The kubeconfig must be updated with an access token, replacing the
exec
section for GCP, AWS, and Azure.
2. Example Kubeconfig Structure
Below is an example of a kubeconfig structure. Ensure this format is maintained when updating the file.
3. Generating Access Tokens
For GCP
Install and configure the Google Cloud SDK.
Use the following command to generate an access token:
Replace the
exec
section in the kubeconfig file with the token:
For AWS
Install the AWS CLI and configure it with your credentials.
Use the following command to generate a token:
Extract the
token
field from the output JSON and replace it in the kubeconfig:
For Azure
Install the Azure CLI and sign in to your Azure account.
Use the following command to generate an access token:
Extract the
accessToken
field from the output JSON and replace it in the kubeconfig:
4. Updating the Kubeconfig
After generating the token, update the kubeconfig file:
Remove or comment out the
exec
section (if present).Replace it with the generated token under the
users
section:
5. Verifying the Setup
Save the updated kubeconfig file.
Test access to the cluster:
If successful, you will see a list of pods in the cluster.
Notes
Ensure that the namespace in the kubeconfig matches the cluster’s namespace.
Tokens typically expire after a certain duration. Regenerate the token as needed.
Use
kubectl describe
for debugging any issues.
Guide 2: Setting up Ratl Load Injectors Using YAML Configurations
This documentation offers a detailed, step-by-step guide for setting up Ratl on-premise load injectors. It walks you through the complete process of configuring your Kubernetes cluster efficiently.
Prerequisites
Ensure you have
kubectl
installed and configured with access to the cluster.A Kubernetes cluster is already running and accessible.
YAML Configurations
1. ServiceAccount Definition
Save the following configuration as ratl-load-sa.yaml
:
2. ServiceAccount Token
Save the following configuration as ratl-load-sa-token.yaml
:
3. Role Definition
Save the following configuration as ratl-load-role.yaml
:
4. RoleBinding Definition
Save the following configuration as ratl-load-role-binding.yaml
:
Deploy YAML Files
Run the following commands to deploy the YAML files to your Kubernetes cluster:
Generating the kubeconfig File
Run the following commands to generate a kubeconfig.yaml
file for accessing the Ratl load injectors:
Test the kubeconfig
To verify the setup, use the following command:
If the setup is successful, you should see a list of pods in your default namespace.
Notes
Ensure that the namespace used in the YAML files matches your cluster’s namespace.
Use
kubectl describe
to debug any issues during deployment.
Last updated