We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc38a6 commit 793490eCopy full SHA for 793490e
openshift/template.yaml
@@ -416,3 +416,22 @@ objects:
416
subjects:
417
- kind: ServiceAccount
418
name: cad-tekton-pruner
419
+- apiVersion: v1
420
+ kind: LimitRange
421
+ metadata:
422
+ name: cad-limitrange
423
+ spec:
424
+ limits:
425
+ - default: # The default limits
426
+ cpu: 500m
427
+ memory: 256Mi
428
+ defaultRequest: # The default requests
429
+ cpu: 100m
430
+ memory: 128Mi
431
+ max: # The maximum limits
432
+ cpu: 1
433
+ memory: 1Gi
434
+ min: # The minimum requests
435
+ cpu: 1m
436
+ memory: 32Mi
437
+ type: Container
0 commit comments