Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: frontend-deployment
- labels:
- app: frontend
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: frontend
- template:
- metadata:
- labels:
- app: frontend
- spec:
- containers:
- - name: frontend
- image: pandaacademy/frontend:latest
- ports:
- - containerPort: 5000
- env:
- - name: BACKEND_URL
- value: http://backend-service:5001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement