mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	- Add kubectl command examples - Add tables of contents - Skip 3rd header tier to make sections more clear - Reference cmd-exec example for curling pod & service IPs - Make section layout, text patterns, changes & links more consistent - Canonical yaml formatting
		
			
				
	
	
		
			15 lines
		
	
	
		
			253 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			253 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: v1
 | 
						|
kind: Pod
 | 
						|
metadata:
 | 
						|
  name: redis
 | 
						|
spec:
 | 
						|
  containers:
 | 
						|
  - name: redis
 | 
						|
    image: redis
 | 
						|
    volumeMounts:
 | 
						|
    - name: redis-persistent-storage
 | 
						|
      mountPath: /data/redis
 | 
						|
  volumes:
 | 
						|
    - name: redis-persistent-storage
 | 
						|
      emptyDir: {}
 |