mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 15:25:19 +00:00 
			
		
		
		
	This ensures nfs-common is installed on GCE, and provides a more functional explanation/example. I launched two replication controllers so that there were busybox pods to poke around at the NFS volume, and so that the later wget actually works (the original example would have to work on the node, or need some other access to the container network). After switching to two controllers, it actually makes more sense to use PV claims, and it's probably a configuration that makes more sense for indirection for NFS anyways.
		
			
				
	
	
		
			14 lines
		
	
	
		
			208 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			208 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: v1
 | 
						|
kind: PersistentVolume
 | 
						|
metadata:
 | 
						|
  name: nfs
 | 
						|
spec:
 | 
						|
  capacity:
 | 
						|
    storage: 1Mi
 | 
						|
  accessModes:
 | 
						|
    - ReadWriteMany
 | 
						|
  nfs:
 | 
						|
    # FIXME: use the right IP
 | 
						|
    server: 10.999.999.999
 | 
						|
    path: "/"
 |