forked from k-space/kube
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1022 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1022 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: apps/v1
 | |
| kind: Deployment
 | |
| metadata:
 | |
|   name: mongoexpress
 | |
| spec:
 | |
|   revisionHistoryLimit: 0
 | |
|   replicas: 1
 | |
|   selector:
 | |
|     matchLabels:
 | |
|       app: mongoexpress
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: mongoexpress
 | |
|     spec:
 | |
|       containers:
 | |
|         - name: mongoexpress
 | |
|           image: mirror.gcr.io/library/mongo-express
 | |
|           ports:
 | |
|            - name: mongoexpress
 | |
|              containerPort: 8081
 | |
|           env:
 | |
|             - name: ME_CONFIG_MONGODB_URL
 | |
|               valueFrom:
 | |
|                 secretKeyRef:
 | |
|                   name: mongodb-application-readwrite
 | |
|                   key: connectionString.standard
 | |
|             - name: ME_CONFIG_MONGODB_ENABLE_ADMIN
 | |
|               value: 'false'
 | |
| ---
 | |
| apiVersion: networking.k8s.io/v1
 | |
| kind: NetworkPolicy
 | |
| metadata:
 | |
|   name: mongoexpress
 | |
| spec:
 | |
|   podSelector:
 | |
|     matchLabels:
 | |
|       app: mongoexpress
 | |
|   policyTypes:
 | |
|   - Egress
 | |
|   egress:
 | |
|     - to:
 | |
|       - podSelector:
 | |
|           matchLabels:
 | |
|             app: mongodb-svc
 | |
|       ports:
 | |
|       - port: 27017
 |