Files
homer/k8s/deploy.yaml
ducoterra 6d79f58388 init
2020-05-12 13:19:10 -04:00

25 lines
487 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: dashboard
spec:
selector:
matchLabels:
app: dashboard
template:
metadata:
labels:
app: dashboard
spec:
containers:
- name: dashboard
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
resources:
limits:
memory: "128Mi"
cpu: "250m"
requests:
memory: "64Mi"
cpu: "1m"
ports:
- containerPort: 8080