Skip to content

Commit

Permalink
fix: memory resource unit for CRD deployment example in README.md (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
Curt-Park authored Sep 24, 2023
1 parent ceab11f commit 2aedacc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ metadata:
name: iris-classifier
namespace: yatai
spec:
bentoTag: iris_classifier:3oevmqfvnkvwvuqj
bentoTag: iris_classifier:3oevmqfvnkvwvuqj # check the tag by `bentoml list iris_classifier`
---
apiVersion: serving.yatai.ai/v2alpha1
kind: BentoDeployment
Expand All @@ -179,10 +179,10 @@ spec:
resources:
limits:
cpu: "500m"
memory: "512m"
memory: "512Mi"
requests:
cpu: "250m"
memory: "128m"
memory: "128Mi"
autoscaling:
maxReplicas: 10
minReplicas: 2
Expand All @@ -194,7 +194,7 @@ spec:
memory: "1Gi"
requests:
cpu: "500m"
memory: "512m"
memory: "512Mi"
autoscaling:
maxReplicas: 4
minReplicas: 1
Expand Down

0 comments on commit 2aedacc

Please sign in to comment.