40 lines
699 B
YAML
40 lines
699 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: vue-app
|
|
namespace: dad-group-46
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: vue-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: vue-app
|
|
spec:
|
|
priorityClassName: low-priority
|
|
containers:
|
|
- name: web
|
|
image: registry-172.22.21.115.sslip.io/dad-group-46/web:v2.0.4
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: vue-app
|
|
namespace: dad-group-46
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
selector:
|
|
app: vue-app
|