Floating Server
...
Deployment Methods
Kubernetes (Helm)

Troubleshooting

3min

If your questions are not answered on this page or within the FAQ, please submit a support ticket and our support team will respond as soon as possible!

Issue: Helm Chart Deployment Fails

Solution: Ensure that all required configuration values are properly set in your Helm values file. This includes specifying the database type (Redis) and ensuring your Kubernetes cluster has sufficient resources for the deployment. You can inspect the logs of the failing pods with:

kubectl logs <pod-name>

Issue: Redis Not Connecting to Floating Server

Solution: Verify that Redis and the Floating Server are deployed in the same namespace and that Redis is reachable from the Floating Server. Check the service definitions and ensure that the Redis service is properly exposing its ports:

YAML


Issue: Data Not Persisting in Redis

Solution: Ensure that a persistent volume claim (PVC) is set up for Redis to store data across restarts. Check your Helm values file to confirm the PVC is defined:

YAML


Issue: Floating Server Not Accessible

Solution: Make sure that the Kubernetes service for the Floating Server is correctly exposing the port. Use the following command to check the service configuration:

kubectl get svc <floating-server-service>

Ensure that the correct port is exposed and accessible from outside the cluster.