Fix typo in resource limit examples (#6375)

* Fix typo in resource limit examples

* Fix typo in resource limit examples
This commit is contained in:
fengjiajie 2025-09-16 21:56:06 +08:00 committed by GitHub
parent 37a24321c7
commit 4c29b955f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -344,7 +344,7 @@ The `revision-cpu-limit` value determines the default CPU allocation limit for r
containers:
- image: ghcr.io/knative/helloworld-go:latest
resources:
requests:
limits:
cpu: "1000m"
```
@ -384,7 +384,7 @@ The `revision-memory-limit` value determines the default memory allocation limit
containers:
- image: ghcr.io/knative/helloworld-go:latest
resources:
requests:
limits:
memory: "200M"
```
@ -424,7 +424,7 @@ The `revision-ephemeral-storage-limit` value determines the default ephemeral st
containers:
- image: ghcr.io/knative/helloworld-go:latest
resources:
requests:
limits:
ephemeral-storage: "750M"
```