To allow the Akash core team to investigate GPU Testnet provider issues, please collect logs via the steps covered in this guide.
Most of the time the kubectl logs command won't show the entire logs due to K8s log rotation, so please make sure to use this advanced technique to save the provider logs:
kubectl -n akash-services get pods -l app=akash-provider -o wide
ssh <node>
crictl inspect $(crictl ps --name provider --state Running -q) | jq -r '.status.logPath'
Make sure you remove the /0.log in the end of the logPath like so:
tar czf provider-logs.tar.gz /var/log/pods/akash-services_akash-provider-0_<unique-ID>/provider
curl -T provider-logs.tar.gz https://transfer.sh ; echo
This command will produce the output that looks like this:
https://transfer.sh/h5Op4hD54c/provider-logs.tar.gz
Share this link with the Akash Core Team for them to troubleshoot the issue.
root@node1:~# kubectl -n akash-services get pods -l app=akash-provider -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
akash-provider-0 1/1 Running 0 9d 10.233.90.133 node1 <none> <none>
root@node1:~# crictl inspect $(crictl ps --name provider --state Running -q) | jq -r '.status.logPath'
/var/log/pods/akash-services_akash-provider-0_19426f5d-2d7f-4649-b956-fe4d26b1fbb8/provider/0.log
root@node1:~# tar czf provider-logs.tar.gz /var/log/pods/akash-services_akash-provider-0_19426f5d-2d7f-4649-b956-fe4d26b1fbb8/provider
root@node1:~# curl -T provider-logs.tar.gz https://transfer.sh ; echo