https://github.com/suse/supportutils-plugin-suse-caasp
Supportconfig plugin for SUSE CaaSP
https://github.com/suse/supportutils-plugin-suse-caasp
Last synced: 5 months ago
JSON representation
Supportconfig plugin for SUSE CaaSP
- Host: GitHub
- URL: https://github.com/suse/supportutils-plugin-suse-caasp
- Owner: SUSE
- License: gpl-2.0
- Created: 2017-06-07T08:49:31.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T14:44:46.000Z (over 4 years ago)
- Last Synced: 2024-04-16T00:13:38.283Z (about 1 year ago)
- Language: Shell
- Size: 84 KB
- Stars: 7
- Watchers: 23
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: COPYING.GPLv2
Awesome Lists containing this project
README
# Description
Supportconfig plugin for CaaSP project.
## Information which have to be collected by supportconfig from CaaSP installation
### Cri-o service
Output from commands
```
crictl version
systemctl status --full crio.service
crictl info
crictl images
crictl ps --all
journalctl -u crio
```Configuration files
* /etc/crictl.yaml
* /etc/sysconfig/crioLogs from containers
```
crictl top
crictl logs
crictl inspect
```### Kubernetes service
Output from commands
```
kubectl config view
kubectl version
kubectl api-versions
kubectl cluster-info dump --all-namespaces --output-directory=/var/log/kubernetes
kubectl get nodes
kubectl get nodes
for srv in kube-proxy kubelet; do
systemctl status --full $srv
done
journalctl -u kubelet
```Configuration files
* /etc/kubernetes/*Logs from containers
```
kubectl top
kubectl logs
kubectl describe
```### GPU drivers
Output from commands
```
nvidia-smi
nvidia-container-cli -k -d /dev/stderr --user=root:video info
```