SIMULATION
Set the node named ek8s-node-1 as unavailable and reschedule all the pods running on it.
SIMULATION
Create a pod that echo ''hello world'' and then exists. Have the pod deleted automatically when it's completed
SIMULATION
List all persistent volumes sorted by capacity, saving the full kubectl output to /opt/KUCC00102/volume_list. Use kubectl 's own functionality for sorting the output, and do not manipulate it any further.
SIMULATION
Create a nginx pod with label env=test in engineering namespace
SIMULATION
Score:7%

Task
Create a new PersistentVolumeClaim
* Name: pv-volume
* Class: csi-hostpath-sc
* Capacity: 10Mi
Create a new Pod which mounts the PersistentVolumeClaim as a volume:
* Name: web-server
* Image: nginx
* Mount path: /usr/share/nginx/html
Configure the new Pod to have ReadWriteOnce access on the volume.
Finally, using kubectl edit or kubectl patch expand the PersistentVolumeClaim to a capacity of 70Mi and record that change.