Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslamlatheef authored Apr 9, 2020
1 parent 6698a58 commit 8d23e9d
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
# Openshift
This is My openshift repository, Please follow me if you need more update on openshift

### POD SCALAING

```
apiVersion: v1
kind: ResourceQuota
metadata:
name: compute-resources
spec:
hard:
pods: "4"
requests.cpu: "1"
requests.memory: 1Gi
limits.cpu: "2"
limits.memory: 2Gi
````
3.9 ( https://docs.openshift.com/container-platform/3.9/scaling_performance/using_cpu_manager.html)
4.0 (https://docs.openshift.com/container-platform/3.9/scaling_performance/using_cpu_manager.html)
### POD DELETION
```$ oc get pods
oc delete pod <NAME OF POD > -n <myproject> --grace-period=0 --force
```

0 comments on commit 8d23e9d

Please sign in to comment.