26 lines
		
	
	
		
			579 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			579 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: DeploymentConfig
 | |
| metadata:
 | |
|   name: notes-app-deployment
 | |
| spec:
 | |
|   replicas: 1
 | |
|   selector:
 | |
|     app: notes-app
 | |
|   template:
 | |
|     metadata:
 | |
|       labels:
 | |
|         app: notes-app
 | |
|     spec:
 | |
|       containers:
 | |
|         - name: notes-app-frontend
 | |
|           image: notes-app-frontend:latest
 | |
|           ports:
 | |
|             - containerPort: 80
 | |
|         - name: notes-app-backend
 | |
|           image: notes-app-backend:latest
 | |
|           ports:
 | |
|             - containerPort: 8080
 | |
|         - name: notes-app-db
 | |
|           image: mysql:8.0
 | |
|           ports:
 | |
|             - containerPort: 3306 | 
