Skip to content
Snippets Groups Projects
Commit e95c733a authored by Bogdan Dobrelya's avatar Bogdan Dobrelya Committed by GitHub
Browse files

Merge pull request #690 from bogdando/collect-info

Add kubelet and calico CLI info collection
parents 15c2919e 893538d8
No related branches found
No related tags found
No related merge requests found
......@@ -25,12 +25,20 @@
cmd: journalctl -p err --no-pager
- name: etcd_info
cmd: etcdctl --peers={{ etcd_access_addresses }} cluster-health
- name: calico_info
cmd: "{{bin_dir}}/calicoctl node status"
- name: calico_workload_info
cmd: "{{bin_dir}}/calicoctl get workloadEndpoint -o wide"
- name: calico_pool_info
cmd: "{{bin_dir}}/calicoctl get ippool -o wide"
- name: weave_info
cmd: weave report
- name: weave_logs
cmd: docker logs weave
- name: kube_describe_all
cmd: kubectl describe all --all-namespaces
- name: kubelet_logs
cmd: journalctl -u kubelet --no-pager
- name: kubedns_logs
cmd: "for i in `kubectl get pods --all-namespaces -l k8s-app=kubedns -o jsonpath={.items..metadata.name}`;
do kubectl logs ${i} --namespace kube-system kubedns; done"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment