Update teleport-node.yaml
This commit is contained in:
parent
dc3a7076eb
commit
4628820aa4
1 changed files with 26 additions and 9 deletions
|
@ -16,20 +16,37 @@ ssh_service:
|
||||||
Type: Server
|
Type: Server
|
||||||
permit_user_env: true
|
permit_user_env: true
|
||||||
commands:
|
commands:
|
||||||
- name: IP
|
- name: Compose
|
||||||
command: ["/bin/curl", "ifconfig.me"]
|
command: ["/bin/sh", "-c", "docker compose version --short"]
|
||||||
period: 1h0m0s
|
period: "168h"
|
||||||
- name: UP
|
|
||||||
command: ["/bin/sh", "-c", "uptime -p | cut -c4- | cut -d',' -f1"]
|
|
||||||
period: 1h0m0s
|
|
||||||
- name: Docker
|
- name: Docker
|
||||||
command: ["/bin/sh", "-c", "docker system info | grep Running | cut -d' ' -f4"]
|
command: ["/bin/sh", "-c", "docker system info | grep Running | cut -d' ' -f4"]
|
||||||
period: 0h30m0s
|
period: "30m"
|
||||||
|
- name: Engine
|
||||||
|
command: ["/bin/sh", "-c", "docker version --format '{{.Server.Version}}'"]
|
||||||
|
period: "168h"
|
||||||
|
- name: Kernel
|
||||||
|
command: ["/bin/uname", "-r"]
|
||||||
|
period: "168h"
|
||||||
|
- name: Teleport
|
||||||
|
command: ["/bin/sh", "-c", "teleport version | cut -d' ' -f2"]
|
||||||
|
period: "168h"
|
||||||
|
- name: Temp
|
||||||
|
command: ["/bin/sh", "-c", "sensors | grep temp1 | cut -d' ' -f9"]
|
||||||
|
period: "1m"
|
||||||
|
|
||||||
proxy_service:
|
proxy_service:
|
||||||
enabled: no
|
enabled: no
|
||||||
app_service:
|
app_service:
|
||||||
enabled: yes
|
enabled: yes
|
||||||
apps:
|
apps:
|
||||||
|
- name: "dns"
|
||||||
|
description: "PiHole"
|
||||||
|
uri: "http://localhost/admin/"
|
||||||
|
rewrite:
|
||||||
|
redirect:
|
||||||
|
- "localhost"
|
||||||
|
- "dns.tp.unjx.de"
|
||||||
- name: "scrutiny"
|
- name: "scrutiny"
|
||||||
uri: "http://localhost:8080"
|
uri: "http://localhost:8080"
|
||||||
public_addr: "scrutiny.tp.fhoss.de"
|
public_addr: "scrutiny.tp.fhoss.de"
|
||||||
|
|
Loading…
Reference in a new issue