You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							407 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							407 B
						
					
					
				| apiVersion: v1 | |
| kind: PersistentVolume | |
| metadata: | |
|   name: mysql-master-pv | |
|   namespace: epdc-mysql | |
|   labels: | |
|     pv: mysql-master-pv | |
| spec: | |
|   accessModes: | |
|     - ReadWriteOnce        #访问模式定义为只能以读写的方式挂载到单个节点 | |
|   capacity: | |
|     storage: 100Gi | |
|   persistentVolumeReclaimPolicy: Retain | |
|   storageClassName: nfs | |
|   nfs: | |
|     path: /mnt/nfsdata/mysql-master | |
|     server: 172.16.0.7
 | |
| 
 |