Skip to content

Commit

Permalink
Merge pull request #90 from replicatedhq/adamancini-patch-dns
Browse files Browse the repository at this point in the history
Add dns resolution configs to host support bundle
  • Loading branch information
adamancini authored Apr 29, 2024
2 parents f491ef0 + 357fcf2 commit 7e40d0d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions host/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,26 @@ spec:
collectorName: "netstat-route-table"
command: "netstat"
args: ["-r", "-n"]
- run:
collectorName: "resolvectl-status"
command: "resolvectl"
args: ["status"]
- run:
collectorName: "resolv-conf"
command: "cat"
args: ["/etc/resolv.conf"]
- run:
collectorName: "systemd-resolved-conf"
command: "cat"
args: ["/etc/systemd/resolved.conf"]
- run:
collectorName: "nsswitch-conf"
command: "cat"
args: ["/etc/nsswitch.conf"]
- run:
collectorName: "hosts"
command: "cat"
args: ["/etc/hosts"]
- run:
collectorName: "ip-route-table"
command: "ip"
Expand All @@ -157,6 +177,10 @@ spec:
collectorName: "systemctl-firewalld-status"
command: "systemctl"
args: ["status", "firewalld"]
- run:
collectorName: "systemctl-resolved-status"
command: "systemctl"
args: ["status", "systemd-resolved"]
- run:
collectorName: "systemctl-docker-status"
command: "systemctl"
Expand All @@ -174,6 +198,10 @@ spec:
collectorName: "systemctl-cat-journald"
command: "systemctl"
args: ["cat", "systemd-journald"]
- run:
collectorName: "systemctl-cat-resolved"
command: "systemctl"
args: ["cat", "systemd-resolved"]
- run:
collectorName: "systemctl-cat-docker"
command: "systemctl"
Expand Down

0 comments on commit 7e40d0d

Please sign in to comment.