25 lines
487 B
YAML
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 |