Merge pull request #32353 from Dirc/main

fixed order for resources: requests and limits
This commit is contained in:
Kubernetes Prow Robot
2022-03-18 21:53:11 -07:00
committed by GitHub
3 changed files with 6 additions and 6 deletions
@@ -99,10 +99,10 @@ and a memory limit of 200 MiB.
```yaml
...
resources:
limits:
memory: 200Mi
requests:
memory: 100Mi
limits:
memory: 200Mi
...
```