31 lines
674 B
YAML
31 lines
674 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: prod-workers-dp
|
|
namespace: prod-workers-ns
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: prod-workers-ap
|
|
strategy:
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: prod-workers-ap
|
|
spec:
|
|
containers:
|
|
- name: prod-workers-pd
|
|
image: registry.gitlab.com/articulacion/workers:latest
|
|
imagePullPolicy: Always
|
|
resources:
|
|
requests:
|
|
memory: "100Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "150Gi"
|
|
cpu: "150m"
|
|
imagePullSecrets:
|
|
- name: workers-gitlab-img
|