- Kubernetes cluster (1.20+)
- kubectl configured
- Helm 3.x installed
Create a namespace:
kubectl create namespace tradingbots-2025Create PostgreSQL secret:
kubectl create secret generic psqlcreds \
--from-literal=POSTGRES_URI="postgresql://user:password@host:5432/database" \
-n tradingbots-2025helm upgrade --install tradingbots \
./helm/tradingbots \
--create-namespace \
--namespace tradingbots-2025Check CronJobs:
kubectl get cronjobs -n tradingbots-2025Check recent jobs:
kubectl get jobs -n tradingbots-2025View bot logs:
kubectl logs -n tradingbots-2025 job/<job-name>- Helm Charts - Configuration details