changeset 12:56543de39954 draft

planemo upload for repository https://github.com/afgane/gcp_batch_netcat commit 4598e83eb2235fccac1aa75254e924665b84c89d
author enis
date Thu, 14 Aug 2025 16:48:42 +0000
parents fe0bf22037a5
children be2f70ae6749
files README.md
diffstat 1 files changed, 2 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Thu Aug 14 16:39:36 2025 +0000
+++ b/README.md	Thu Aug 14 16:48:42 2025 +0000
@@ -116,13 +116,12 @@
 - Access to the custom VM image: e.g., `galaxy-k8s-boot-v2025-08-12`
 
 ### Network Configuration
-- Firewall rule allowing traffic from the Batch subnet to NFS server (all required NFS ports):
+- Firewall rule allowing traffic from the Batch subnet to NFS server:
 ```
 gcloud compute firewall-rules create allow-nfs-from-batch \
   --network=NETWORK_NAME \
-  --allow=tcp:2049,tcp:111,tcp:20048,udp:111,udp:2049
+  --allow=tcp:2049
 ```
-**Important**: Port 111 (RPC portmapper) is critical for NFS mounting to work. Without it, you'll get "operation not permitted" errors even if port 2049 is accessible.
 
 ### NFS Server Setup
 - The NFS service must be accessible via LoadBalancer with external IP (typically private within VPC)
@@ -142,12 +141,6 @@
   - name: nfs
     port: 2049
     protocol: TCP
-  - name: rpcbind
-    port: 111
-    protocol: TCP
-  - name: mountd
-    port: 20048
-    protocol: TCP
 ```
 
 ### CVMFS Requirements