You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
490 B
24 lines
490 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: model-registry-deployment
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: rest-container
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
- name: grpc-container
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi |