Deploy K8ssandra and Traefik with Kind
When configuring Kind to use Traefik, additional configuration options are required. The following guide walks through standing up a Kind k8s cluster with Traefik configured for ingress on ports other than the standard 80
and 443
.
1. Create a Kind configuration file
Kind supports an optional configuration file for configuring specific behaviors of the Docker container which runs the Kubelet process. Here we are adding port forwarding rules for the following ports:
8080
- HTTP traffic - This is used for accessing the metrics and repair user interfaces8443
- HTTPS traffic - Useful when accessing the metrics and repair interfaces in a secure manner9000
- Traefik dashboard - WARNING this should only be done in development environments. Higher level environments should usekubectl port-forward
.9042
- C* traffic - Insecure Cassandra traffic. Note: Without TLS (more specifically SNI) Traefik may not be able to distinguish traffic across cluster boundaries. If you are in an environment where more than one cluster is deployed you must add additional ports here.9142
- C* TLS traffic - Secure Cassandra traffic, multiple clusters may run behind this single port.8080
- Stargate GraphQL API8081
- Stargate Authorization REST API8082
- Stargate CRUD REST API
kind.config.yaml
The kind.config.yaml
file is here.
2. Start Kind Cluster
3. Create Traefik Helm values file
Note the service type of NodePort
. It is used here as it is the port on the
Docker container running Kind which is forwarded to our local machine.
traefik.values.yaml
The traefik.values.yaml
file is here.
4. Install Traefik via Helm
5. Access Traefik Dashboard
With the deployment complete we may now access the Traefik dashboard at http://127.0.0.1:9000/dashboard/. Example:
Next steps
Feel free to explore other the Traefik ingress topics. Also see the additional K8ssandra tasks.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.