Initial commit: Socktop WebTerm with k3s deployment
- Multi-architecture Docker image (ARM64 + AMD64) - Kubernetes manifests for 3-replica deployment - Traefik ingress configuration - NGINX Proxy Manager integration - ConfigMap-based configuration - Automated build and deployment scripts - Session monitoring tools
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"profiles": {
|
||||
"rpi-master": {
|
||||
"name": "Raspberry Pi Master",
|
||||
"host": "192.168.1.100",
|
||||
"port": 3000,
|
||||
"auth": {
|
||||
"type": "ssh_key",
|
||||
"username": "pi",
|
||||
"key_path": "~/.config/socktop/rpi-master.pem"
|
||||
},
|
||||
"tags": ["production", "master", "rpi"],
|
||||
"color": "#a6d189"
|
||||
},
|
||||
"rpi-worker-1": {
|
||||
"name": "Raspberry Pi Worker 1",
|
||||
"host": "192.168.1.101",
|
||||
"port": 3000,
|
||||
"auth": {
|
||||
"type": "ssh_key",
|
||||
"username": "pi",
|
||||
"key_path": "~/.config/socktop/rpi-worker-1.pem"
|
||||
},
|
||||
"tags": ["production", "worker", "rpi"],
|
||||
"color": "#8caaee"
|
||||
},
|
||||
"rpi-worker-2": {
|
||||
"name": "Raspberry Pi Worker 2",
|
||||
"host": "192.168.1.102",
|
||||
"port": 3000,
|
||||
"auth": {
|
||||
"type": "ssh_key",
|
||||
"username": "pi",
|
||||
"key_path": "~/.config/socktop/rpi-worker-2.pem"
|
||||
},
|
||||
"tags": ["production", "worker", "rpi"],
|
||||
"color": "#ca9ee6"
|
||||
},
|
||||
"rpi-worker-3": {
|
||||
"name": "Raspberry Pi Worker 3",
|
||||
"host": "192.168.1.103",
|
||||
"port": 3000,
|
||||
"auth": {
|
||||
"type": "ssh_key",
|
||||
"username": "pi",
|
||||
"key_path": "~/.config/socktop/rpi-worker-3.pem"
|
||||
},
|
||||
"tags": ["production", "worker", "rpi"],
|
||||
"color": "#ef9f76"
|
||||
},
|
||||
"local": {
|
||||
"name": "Local Agent",
|
||||
"host": "localhost",
|
||||
"port": 3001,
|
||||
"auth": {
|
||||
"type": "none"
|
||||
},
|
||||
"tags": ["local", "dev"],
|
||||
"color": "#e5c890"
|
||||
}
|
||||
},
|
||||
"default_profile": "local",
|
||||
"settings": {
|
||||
"refresh_interval": 1000,
|
||||
"theme": "catppuccin-frappe",
|
||||
"show_graphs": true,
|
||||
"compact_mode": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user