Deploy AstrBot with Kubernetes
WARNING
You can deploy AstrBot in a high-availability setup using Kubernetes (K8s), allowing it to automatically recover from failures.
Due to the current use of an SQLite database, this deployment does not support horizontal scaling with multiple replicas. Additionally, if using the Sidecar mode, pay special attention to the persistence of NapCat's login state.
The following tutorial assumes that you have kubectl installed and configured, and that you can connect to your K8s cluster.
Prerequisites
Before you begin, make sure your Kubernetes cluster meets the following conditions:
- Default StorageClass: Used to dynamically create
PersistentVolumeClaim(PVC). You can check this withkubectl get sc. If you don't have one, you need to manually create aPersistentVolume(PV) or install a corresponding storage plugin (e.g.,nfs-client-provisioner). - Network Access: Ensure that your cluster nodes can pull images from
docker.ioor your specified image repository.
Deployment Methods
We offer two deployment options:
- Integrated Deployment (Sidecar Mode): Deploy AstrBot and NapCat in the same Pod. Recommended for personal QQ accounts.
- Standalone Deployment: Deploy only AstrBot. Suitable for other platforms or if you want to manage NapCat independently.
Method 1: Deploy with NapCatQQ (Sidecar)
This method is located in the k8s/astrbot_with_napcat directory.
1. Deploy
# 1. Create namespace
kubectl apply -f k8s/astrbot_with_napcat/00-namespace.yaml
# 2. Create Persistent Volume Claim
# Note: astrbot-data-shared-pvc requires ReadWriteMany (RWX) access mode.
# If your cluster does not support RWX, you need to configure shared storage such as NFS and modify the storageClassName in 01-pvc.yaml.
kubectl apply -f k8s/astrbot_with_napcat/01-pvc.yaml
# 3. Deploy the application
kubectl apply -f k8s/astrbot_with_napcat/02-deployment.yaml2. Expose Service (Choose one)
Option A: NodePort
bashkubectl apply -f k8s/astrbot_with_napcat/03-service-nodeport.yamlThe service will be exposed via the node IP and a port automatically assigned by Kubernetes. You can find the port with the following command:
bashkubectl get svc -n astrbot-nsIn the output, find the
PORT(S)column forastrbot-webui-svcandnapcat-web-svc. The format is<internal-port>:<NodePort>/TCP. For example, if you see8080:30185/TCP, the access address ishttp://<NodeIP>:30185.Option B: LoadBalancer
If your cluster supports
LoadBalancertype services (usually provided in K8s services from cloud providers), you can use this method.bashkubectl apply -f k8s/astrbot_with_napcat/04-service-loadbalancer.yamlAfter execution, check the assigned external IP (EXTERNAL-IP) with
kubectl get svc -n astrbot-ns.
3. Configure Connection
Since AstrBot and NapCat are in the same Pod, they can communicate directly via localhost.
Add a message platform in AstrBot:
- Go to the AstrBot WebUI, select
Settings->Message Platform->Add. - Select Message Platform Category:
aiocqhttp - Bot Name:
napcat(or custom) - Reverse Websocket Host:
0.0.0.0 - Reverse Websocket Port:
6199 - Save the configuration.
- Go to the AstrBot WebUI, select
Configure Websocket Client in NapCat:
- Go to the NapCat WebUI, select
Settings->Reverse WS->Add. - Enable: On
- URL:
ws://localhost:6199/ws - Message Format:
Array - Save the configuration.
- Go to the NapCat WebUI, select
Method 2: Deploy AstrBot Only (General Purpose)
This method is located in the k8s/astrbot directory.
1. Deploy
# 1. Create namespace
kubectl apply -f k8s/astrbot/00-namespace.yaml
# 2. Create Persistent Volume Claim
kubectl apply -f k8s/astrbot/01-pvc.yaml
# 3. Deploy the application
kubectl apply -f k8s/astrbot/02-deployment.yaml2. Expose Service (Choose one)
Option A: NodePort
bashkubectl apply -f k8s/astrbot/03-service-nodeport.yamlThe service will be exposed via the node IP and a port automatically assigned by Kubernetes. You can find the port with the following command:
bashkubectl get svc -n astrbot-standalone-nsIn the output, find the
PORT(S)column forastrbot-webui-svc. The format is<internal-port>:<NodePort>/TCP. For example, if you see8080:30185/TCP, the access address ishttp://<NodeIP>:30185.Option B: LoadBalancer
bashkubectl apply -f k8s/astrbot/04-service-loadbalancer.yamlAfter execution, check the assigned external IP (EXTERNAL-IP) with
kubectl get svc -n astrbot-standalone-ns.
Advanced Configuration
Image Mirror (for users in mainland China)
If you have difficulty pulling the soulter/astrbot:latest or mlikiowa/napcat-docker:latest images, you can manually edit the corresponding 02-deployment.yaml file and replace the image field with a domestic mirror address, for example:
# Example:
# image: soulter/astrbot:latest
# Replace with:
image: m.daocloud.io/docker.io/soulter/astrbot:latestEnable Docker Sandbox Code Executor
If you need to use the sandbox code executor, you need to mount the Docker socket file into the Pod.
Edit the 02-deployment.yaml file and add volumes and volumeMounts under spec.template.spec:
Add the following to the
volumeMountslist of theastrbotcontainer:yaml- name: docker-sock mountPath: /var/run/docker.sockAdd the following to the
spec.template.spec.volumeslist:yaml- name: docker-sock hostPath: path: /var/run/docker.sock type: Socket
WARNING
Mounting the Docker socket into a Pod poses a security risk. Please ensure you understand the implications.
View Logs
Sidecar Deployment Mode:
bash# View AstrBot logs kubectl logs -f -n astrbot-ns deployment/astrbot-stack -c astrbot # View NapCat logs kubectl logs -f -n astrbot-ns deployment/astrbot-stack -c napcatStandalone Deployment Mode:
bashkubectl logs -f -n astrbot-standalone-ns deployment/astrbot-standalone
🎉 All Done!
After deploying and exposing the service, you can access the AstrBot admin panel through the corresponding IP and port.
The default username and password are
astrbotandastrbot.
