Google Cloud Filestore Log-Based Troubleshooting
Diagnoses, troubleshoots, and remediates Google Cloud Filestore client mount failures, permission errors (EACCES), and network timeouts (ETIMEDOUT) across projects.
Prerequisites & Quick Start
Required IAM roles on target project(s) (and Shared VPC host project if applicable):
- Read:
roles/file.viewer (instance & export ACLs), roles/compute.networkViewer (VPC firewall rules), roles/logging.viewer (Cloud Audit & GKE CSI logs), roles/mcp.toolUser (if using MCP tools).
- Write (Remediation only):
roles/file.editor (export ACL updates), roles/compute.securityAdmin (firewall rule creation).
Authenticate, verify billing/APIs, and configure your environment:
gcloud auth login && gcloud auth application-default login
gcloud billing projects describe {project_id} --format="value(billingEnabled)"
gcloud services enable file.googleapis.com compute.googleapis.com logging.googleapis.com --quiet
gcloud config set project {project_id} && gcloud config set compute/region {region}
Attribution
Prefix every gcloud command provided or executed with the skill metrics environment:
CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \
gcloud filestore instances describe ...
On direct REST API calls, append HTTP header: User-Agent: gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting).
Conceptual & Informational Queries (CRITICAL)
For purely conceptual, architectural, or educational questions (e.g., "What causes EACCES on Filestore?", "Why does GKE Node IP appear instead of Pod IP?", "What ports does Filestore require?", "Explain root squash"):
- Rule: Answer immediately using pre-trained knowledge and the workflow rules below. Answering directly minimizes tool latency and token usage when the user only seeks architectural guidance.
- Constraint: Do not execute external tool calls or API requests for basic knowledge questions.
Handling "No-Command" Constraints (CRITICAL)
If the user prompt contains constraints like "Do not execute commands", "without executing", or "read-only":
- Rule: Strictly avoid calling
run_command to execute any shell, Python, or gcloud commands.
- Discovery:
- First, check if Filestore MCP tools (
get_instance, list_instances) are available and use them (API calls, not command executions).
- If MCP tools are unavailable, read
references/mock-fleet-data.md only if the requested instance matches one of the evaluation scenarios (finance-share, shared-nfs, ml-data, data-hub, prod-share). Never report mock data as live production state. If the instance is not listed there, state that live access is required and provide the exact commands for the user to run.
- Fast-Path Stop Rule: Once you locate the target instance in
references/mock-fleet-data.md, stop reading additional files immediately and formulate your response. Do NOT read scripts/quick_diagnose.py, scripts/diagnose_lib.py, _internal/quick_diagnose_test.py, or EVAL.* files when command execution is disabled, as inspecting code/test files wastes turns and triggers timeouts.
- Explain the required diagnostic steps and output the exact attributed commands for manual execution.
- Mandatory User Confirmation Requirement: Even when command execution is disabled or the user asks only for recommendations, your response MUST STILL end with a clear question prompting the user for explicit confirmation before applying any remediation (e.g., "Would you like me to proceed with creating the VPC ingress firewall rule
[rule_name]? Please confirm to proceed.").
Multi-Runtime Execution Options
Option 1: Bundled Python CLI Script (Recommended for CLI / Terminal Agents)
# Single instance diagnosis
python3 scripts/quick_diagnose.py --instance="<INSTANCE_ID>" --location="<LOCATION_OR_ZONE>" \
[--project="<PROJECT_ID>"] [--client-ip="<CLIENT_IP>"] [--client-subnet="<CLIENT_SUBNET_CIDR>"]
# Bulk project-wide fleet diagnosis
python3 scripts/quick_diagnose.py --all --project="<PROJECT_ID>" [--json]
| Flag |
Purpose |
--instance, --location |
Filestore instance ID and region/zone (--zone is a legacy alias). Required unless --all. |
--project |
GCP project ID (defaults to active gcloud project). |
--client-ip / --client-subnet |
Client IP or CIDR to evaluate against export ACLs and ingress firewall rules. |
--json |
Emit machine-readable JSON on stdout (narrative report goes to stderr). |
--apply-fix |
Execute generated remediation commands. Only pass after explicit user confirmation. |
Option 2: Filestore MCP Tools / REST API / gcloud CLI
Core Operational Workflow
Step 1: Parameter Extraction & GKE Node Architecture
- Extract
instance, location (region/zone), project, and client_ip / client_subnet. If target parameters are missing, list instances or ask the user to confirm.
- GKE Architecture Rule: PersistentVolumes are mounted by the Linux kernel on the GKE Worker Node, not inside the Pod network namespace. Even if Pod IPs (
10.4.0.0/14) are allowlisted, the NFS server sees traffic originating from the GKE Node Internal IP. Always evaluate and allowlist the GKE Node Subnet CIDR in nfsExportOptions and VPC firewall rules.
Step 2: Instance Metadata & Shared VPC Resolution
- Verify instance
state is READY (report state blocker if CREATING, DELETING, or ERROR).
- Extract primary Filestore IP (
networks[0].ipAddresses[0]) and VPC network URI.
- If
networks[0].network references projects/{host_project}/global/networks/{network}, resolve {host_project} as the Shared VPC host project for firewall queries.
Step 3: Export ACL Evaluation (EACCES vs EROFS)
- Inspect
fileShares[0].nfsExportOptions (if empty, default 0.0.0.0/0 READ_WRITE NO_ROOT_SQUASH applies).
EACCES (Permission Denied by Server): Triggered when the client IP or subnet CIDR is not covered by any ipRanges entry.
- Remediation: Non-destructively append the client IP/subnet CIDR to
nfsExportOptions, preserving all existing export rules to avoid breaking active mounts.
EROFS (Read-only file system): Triggered when accessMode is READ_ONLY but client writes are attempted.
Step 4: VPC Ingress Firewall Inspection (ETIMEDOUT)
- Query ingress firewall rules in the VPC network (in the host project if Shared VPC).
ETIMEDOUT (Connection Timed Out): Triggered when priority-sorted ingress rules block or fail to allow TCP port 2049 (NFS) and TCP/UDP port 111 (rpcbind) from the client CIDR.
- Remediation: Create an ingress firewall rule (
ALLOW tcp:2049,udp:2049,tcp:111,udp:111) from the client subnet CIDR.
Step 5: Cloud Audit Logs & Configuration Drift Scanning
Query Cloud Audit Admin Activity logs (file.googleapis.com) over the past 24 hours to check if an UpdateInstance operation modified export ACLs or networks:
CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \
gcloud logging read 'logName="projects/{project_id}/logs/cloudaudit.googleapis.com%2Factivity" AND protoPayload.serviceName="file.googleapis.com" AND protoPayload.resourceName=~".*{instance}.*"' \
--project="{project_id}" --freshness="1d" --limit=5 --format="json"
- Scope to Admin Activity: Always include
cloudaudit.googleapis.com%2Factivity in logName so read-only GetInstance/ListInstances calls (data_access) are not falsely flagged as administrative drift.
- Drift is Informational: Recent
UpdateInstance events explain when and by whom (principalEmail, timestamp) configuration changed, but only a failed export ACL or firewall check constitutes a mount blocker.
- Single Bulk Query Rule: When scanning multiple instances (
--all), issue a single project-wide audit log query rather than per-instance queries in a loop.
- GKE CSI Driver Logs: Optionally inspect
resource.labels.container_name="gcp-filestore-driver" (severity>=ERROR) for client-side mount errors.
Output Format & Mandatory Confirmation Gate
Every diagnostic report MUST include a structured summary table and root cause analysis:
### Filestore Diagnostic Report: `[instance-name]`
| Parameter | Value |
| :--- | :--- |
| **Instance ID** | `[instance-name]` (`[location]`, Tier: `[tier]`, State: `READY`) |
| **Filestore IP & Network** | `[filestore-ip]` on VPC `[network-name]` (Host Project: `[host-project]`) |
| **Port 2049 & Export ACL** | Port 2049: `OPEN / BLOCKED` \| Export ACL: `PASS / REJECTED` |
| **Diagnostic Verdict** | **HEALTHY** or **BLOCKED: [Root Cause]** |
#### Root Cause Analysis & Recommended Remediation
- [Explanation of ETIMEDOUT (missing firewall rule on port 2049) vs EACCES (missing export ACL rule) and any recent UpdateInstance audit drift]
```bash
CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \
gcloud compute firewall-rules create ...
```
Interactive Remediation Confirmation Gate (MANDATORY)
- NEVER execute write or remediation commands without explicit user confirmation.
- Always conclude your response with an explicit confirmation question:
"Would you like me to proceed with executing this remediation command for you? Please confirm to proceed."
References & Bundled Scripts
- Error Signatures & Architecture Matrix
- Cloud Logging & Audit Drift Queries
- VPC Network & Firewall Specification
- Mock Fleet Data for Evaluations
scripts/quick_diagnose.py & scripts/diagnose_lib.py: Zero-dependency CLI runner and pure-Python evaluation engine.
1---2name: google-cloud-filestore-log-troubleshooting3description: Diagnoses and resolves Google Cloud Filestore client mount failures, permission errors (EACCES), and network timeouts (ETIMEDOUT). Use when an NFS mount hangs or fails from a Compute Engine VM, GKE pod, Cloud Run service, or Vertex AI workload, when `mount.nfs` reports "Connection timed out" or "access denied by server", when checking whether VPC ingress firewall rules or `nfsExportOptions` allow a client IP, or when a previously working Filestore share suddenly stops mounting after an administrative change. Don't use for Cloud Storage (GCS) buckets, Persistent Disk, or Cloud NetApp Volumes, and don't use for Filestore capacity scaling or backup and export-policy auditing.4---56<!-- disableFinding(LINE_OVER_80) -->78# Google Cloud Filestore Log-Based Troubleshooting910Diagnoses, troubleshoots, and remediates Google Cloud Filestore client mount failures, permission errors (`EACCES`), and network timeouts (`ETIMEDOUT`) across projects.1112## Prerequisites & Quick Start1314Required IAM roles on target project(s) (and Shared VPC host project if applicable):15* **Read**: `roles/file.viewer` (instance & export ACLs), `roles/compute.networkViewer` (VPC firewall rules), `roles/logging.viewer` (Cloud Audit & GKE CSI logs), `roles/mcp.toolUser` (if using MCP tools).16* **Write (Remediation only)**: `roles/file.editor` (export ACL updates), `roles/compute.securityAdmin` (firewall rule creation).1718Authenticate, verify billing/APIs, and configure your environment:1920```bash21gcloud auth login && gcloud auth application-default login22gcloud billing projects describe {project_id} --format="value(billingEnabled)"23gcloud services enable file.googleapis.com compute.googleapis.com logging.googleapis.com --quiet24gcloud config set project {project_id} && gcloud config set compute/region {region}25```2627## Attribution2829Prefix every `gcloud` command provided or executed with the skill metrics environment:3031```bash32CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \33gcloud filestore instances describe ...34```3536On direct REST API calls, append HTTP header: `User-Agent: gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)`.3738## Conceptual & Informational Queries (CRITICAL)3940For purely conceptual, architectural, or educational questions (e.g., "What causes EACCES on Filestore?", "Why does GKE Node IP appear instead of Pod IP?", "What ports does Filestore require?", "Explain root squash"):41* **Rule**: **Answer immediately using pre-trained knowledge and the workflow rules below.** Answering directly minimizes tool latency and token usage when the user only seeks architectural guidance.42* **Constraint**: **Do not execute external tool calls or API requests** for basic knowledge questions.4344## Handling "No-Command" Constraints (CRITICAL)4546If the user prompt contains constraints like "Do not execute commands", "without executing", or "read-only":47* **Rule**: **Strictly avoid calling `run_command`** to execute any shell, Python, or `gcloud` commands.48* **Discovery**:49 1. First, check if Filestore MCP tools (`get_instance`, `list_instances`) are available and use them (API calls, not command executions).50 2. If MCP tools are unavailable, read `references/mock-fleet-data.md` **only if** the requested instance matches one of the evaluation scenarios (`finance-share`, `shared-nfs`, `ml-data`, `data-hub`, `prod-share`). Never report mock data as live production state. If the instance is not listed there, state that live access is required and provide the exact commands for the user to run.51 3. **Fast-Path Stop Rule**: Once you locate the target instance in `references/mock-fleet-data.md`, **stop reading additional files immediately** and formulate your response. Do **NOT** read `scripts/quick_diagnose.py`, `scripts/diagnose_lib.py`, `_internal/quick_diagnose_test.py`, or `EVAL.*` files when command execution is disabled, as inspecting code/test files wastes turns and triggers timeouts.52 4. Explain the required diagnostic steps and output the exact attributed commands for manual execution.53* **Mandatory User Confirmation Requirement**: Even when command execution is disabled or the user asks only for recommendations, your response **MUST STILL end with a clear question prompting the user for explicit confirmation** before applying any remediation (e.g., *"Would you like me to proceed with creating the VPC ingress firewall rule `[rule_name]`? Please confirm to proceed."*).5455## Multi-Runtime Execution Options5657### Option 1: Bundled Python CLI Script (Recommended for CLI / Terminal Agents)5859```bash60# Single instance diagnosis61python3 scripts/quick_diagnose.py --instance="<INSTANCE_ID>" --location="<LOCATION_OR_ZONE>" \62 [--project="<PROJECT_ID>"] [--client-ip="<CLIENT_IP>"] [--client-subnet="<CLIENT_SUBNET_CIDR>"]6364# Bulk project-wide fleet diagnosis65python3 scripts/quick_diagnose.py --all --project="<PROJECT_ID>" [--json]66```6768| Flag | Purpose |69| :--- | :--- |70| `--instance`, `--location` | Filestore instance ID and region/zone (`--zone` is a legacy alias). Required unless `--all`. |71| `--project` | GCP project ID (defaults to active `gcloud` project). |72| `--client-ip` / `--client-subnet` | Client IP or CIDR to evaluate against export ACLs and ingress firewall rules. |73| `--json` | Emit machine-readable JSON on stdout (narrative report goes to stderr). |74| `--apply-fix` | Execute generated remediation commands. **Only pass after explicit user confirmation.** |7576### Option 2: Filestore MCP Tools / REST API / `gcloud` CLI77* **MCP Tools**: Call `get_instance(name='projects/{project_id}/locations/{location}/instances/{instance_id}')` and inspect `fileShares[0].nfsExportOptions` and `networks[0].network`.78* **Native REST API (`call_gcp_api`)**: Invoke `service="file"`, `version="v1"`, `resource_path="projects/{project_id}/locations/{location}/instances/{instance_id}"`.79* **Standard `gcloud`**:80 ```bash81 CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \82 gcloud filestore instances describe {instance_id} --location={location} --project={project_id} --format=json83 ```8485--------------------------------------------------------------------------------8687## Core Operational Workflow8889### Step 1: Parameter Extraction & GKE Node Architecture90* Extract `instance`, `location` (region/zone), `project`, and `client_ip` / `client_subnet`. If target parameters are missing, list instances or ask the user to confirm.91* **GKE Architecture Rule**: PersistentVolumes are mounted by the Linux kernel on the **GKE Worker Node**, not inside the Pod network namespace. Even if Pod IPs (`10.4.0.0/14`) are allowlisted, the NFS server sees traffic originating from the **GKE Node Internal IP**. Always evaluate and allowlist the **GKE Node Subnet CIDR** in `nfsExportOptions` and VPC firewall rules.9293### Step 2: Instance Metadata & Shared VPC Resolution941. Verify instance `state` is `READY` (report state blocker if `CREATING`, `DELETING`, or `ERROR`).952. Extract primary Filestore IP (`networks[0].ipAddresses[0]`) and VPC network URI.963. If `networks[0].network` references `projects/{host_project}/global/networks/{network}`, resolve `{host_project}` as the Shared VPC host project for firewall queries.9798### Step 3: Export ACL Evaluation (`EACCES` vs `EROFS`)991. Inspect `fileShares[0].nfsExportOptions` (if empty, default `0.0.0.0/0` `READ_WRITE` `NO_ROOT_SQUASH` applies).1002. **`EACCES (Permission Denied by Server)`**: Triggered when the client IP or subnet CIDR is not covered by any `ipRanges` entry.101 * **Remediation**: Non-destructively append the client IP/subnet CIDR to `nfsExportOptions`, preserving all existing export rules to avoid breaking active mounts.1023. **`EROFS (Read-only file system)`**: Triggered when `accessMode` is `READ_ONLY` but client writes are attempted.103104### Step 4: VPC Ingress Firewall Inspection (`ETIMEDOUT`)1051. Query ingress firewall rules in the VPC network (in the host project if Shared VPC).1062. **`ETIMEDOUT (Connection Timed Out)`**: Triggered when priority-sorted ingress rules block or fail to allow TCP port `2049` (NFS) and TCP/UDP port `111` (rpcbind) from the client CIDR.107 * **Remediation**: Create an ingress firewall rule (`ALLOW` `tcp:2049,udp:2049,tcp:111,udp:111`) from the client subnet CIDR.108109### Step 5: Cloud Audit Logs & Configuration Drift Scanning110Query Cloud Audit Admin Activity logs (`file.googleapis.com`) over the past 24 hours to check if an `UpdateInstance` operation modified export ACLs or networks:111112```bash113CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \114gcloud logging read 'logName="projects/{project_id}/logs/cloudaudit.googleapis.com%2Factivity" AND protoPayload.serviceName="file.googleapis.com" AND protoPayload.resourceName=~".*{instance}.*"' \115 --project="{project_id}" --freshness="1d" --limit=5 --format="json"116```117118* **Scope to Admin Activity**: Always include `cloudaudit.googleapis.com%2Factivity` in `logName` so read-only `GetInstance`/`ListInstances` calls (`data_access`) are not falsely flagged as administrative drift.119* **Drift is Informational**: Recent `UpdateInstance` events explain *when* and *by whom* (`principalEmail`, `timestamp`) configuration changed, but only a failed export ACL or firewall check constitutes a mount blocker.120* **Single Bulk Query Rule**: When scanning multiple instances (`--all`), issue a single project-wide audit log query rather than per-instance queries in a loop.121* **GKE CSI Driver Logs**: Optionally inspect `resource.labels.container_name="gcp-filestore-driver"` (`severity>=ERROR`) for client-side mount errors.122123--------------------------------------------------------------------------------124125## Output Format & Mandatory Confirmation Gate126127Every diagnostic report MUST include a structured summary table and root cause analysis:128129````markdown130### Filestore Diagnostic Report: `[instance-name]`131132| Parameter | Value |133| :--- | :--- |134| **Instance ID** | `[instance-name]` (`[location]`, Tier: `[tier]`, State: `READY`) |135| **Filestore IP & Network** | `[filestore-ip]` on VPC `[network-name]` (Host Project: `[host-project]`) |136| **Port 2049 & Export ACL** | Port 2049: `OPEN / BLOCKED` \| Export ACL: `PASS / REJECTED` |137| **Diagnostic Verdict** | **HEALTHY** or **BLOCKED: [Root Cause]** |138139#### Root Cause Analysis & Recommended Remediation140- [Explanation of ETIMEDOUT (missing firewall rule on port 2049) vs EACCES (missing export ACL rule) and any recent UpdateInstance audit drift]141142```bash143CLOUDSDK_METRICS_ENVIRONMENT="gcs-skills gcs-skills/1.0 (skill:google-cloud-filestore-log-troubleshooting)" \144gcloud compute firewall-rules create ...145```146````147148### Interactive Remediation Confirmation Gate (MANDATORY)149* **NEVER execute write or remediation commands without explicit user confirmation.**150* Always conclude your response with an explicit confirmation question:151 > *"Would you like me to proceed with executing this remediation command for you? Please confirm to proceed."*152153## References & Bundled Scripts154* [Error Signatures & Architecture Matrix](references/error-signatures.md)155* [Cloud Logging & Audit Drift Queries](references/logging-and-audit-queries.md)156* [VPC Network & Firewall Specification](references/network-firewall-spec.md)157* [Mock Fleet Data for Evaluations](references/mock-fleet-data.md)158* `scripts/quick_diagnose.py` & `scripts/diagnose_lib.py`: Zero-dependency CLI runner and pure-Python evaluation engine.