19 lines
370 B
YAML
19 lines
370 B
YAML
# Production web: imagePullPolicy and resources
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ai-web
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: ai-web
|
|
imagePullPolicy: Always
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|