Remove specific server information from documentation

- Replace actual server names (jp1, kr1, lambda) with generic examples
- Use remote1, remote2 as example remote server names
- Keep documentation generic for public distribution
This commit is contained in:
kappa
2025-08-10 18:01:18 +09:00
parent f1e3c76c6d
commit 79f70682e2
2 changed files with 7 additions and 8 deletions

View File

@@ -56,9 +56,8 @@ The `.claude/settings.local.json` file enables all configured MCP servers for Cl
### Remote Server Support ### Remote Server Support
The server automatically works with all configured Incus remotes: The server automatically works with all configured Incus remotes:
- **jp1**: Primary remote server (current) - **remote1**: Example primary remote server
- **kr1**: Secondary remote server - **remote2**: Example secondary remote server
- **lambda**: Additional remote server
- **local**: Local Incus daemon - **local**: Local Incus daemon
- **images**: LinuxContainers.org image server - **images**: LinuxContainers.org image server
- **docker**: Docker Hub OCI registry - **docker**: Docker Hub OCI registry

View File

@@ -196,11 +196,11 @@ incus_start_instance: {"name": "webserver"}
### Remote Operations ### Remote Operations
```bash ```bash
incus_list_instances: {"remote": "jp1"} incus_list_instances: {"remote": "remote1"}
# Lists instances only from the jp1 remote server # Lists instances only from the remote1 server
incus_show_instance: {"name": "myapp", "remote": "kr1"} incus_show_instance: {"name": "myapp", "remote": "remote2"}
# Shows details for 'myapp' instance on kr1 server # Shows details for 'myapp' instance on remote2 server
``` ```
### Command Execution ### Command Execution
@@ -208,7 +208,7 @@ incus_show_instance: {"name": "myapp", "remote": "kr1"}
incus_exec_command: { incus_exec_command: {
"instance": "webserver", "instance": "webserver",
"command": "apt update && apt install -y nginx", "command": "apt update && apt install -y nginx",
"remote": "jp1" "remote": "remote1"
} }
``` ```