一、查看容器相关信息
1、获取Pods
root@truenas[/mnt]# k3s kubectl get pods -n ix-nextcloud
NAME READY STATUS RESTARTS AGE
nextcloud-redis-66b89f874-gbjmc 1/1 Running 0 8m33s
nextcloud-postgres-54cf74bdd8-fcfl7 1/1 Running 0 8m33s
nextcloud-5579b75d9f-6bwmv 1/1 Running 0 8m33s
2、查看Pods详细信息
root@truenas[/mnt]# k3s kubectl describe pod nextcloud-5579b75d9f-6bwmv -n ix-nextcloud
二、容器简单问题处理
1、删除Pods
root@truenas[/mnt]# kubectl delete pod <podname> -n <namespace>
2、强制删除Pods
root@truenas[/mnt]# kubectl delete pod <podname> -n <namespace> --grace-period=0 --force
三、Pod内部命令
1、Pod命令行
root@truenas[/mnt]# k3s kubectl -n <namespace> exec -it <podname> -c nextcloud -- /bin/bash