Search This Blog

Thursday, 20 January 2022

PersistentVolumes

 PersistentVolumes:

  1. Name: persistentvolume1
  2. StorageClass: [localblock, Premium,]
  3. PersistentVolumeClaim: pvc1
  4. Status: [Bound, Released, Failed]
  5. Capacity : 2TB
  6. AccessModes:[ ReadWriteOnce, ReadWriteMany,]
  7. VolumeMode: [Block,Filesystem,]
  8. ReclaimPolicy: [Delete,Retain,]
  9. Annotations:
  10. Labels
  11. Owner: [Node1, Noowner,]
  12. Createdat: Date & Time 


  • Persistent Volumes are not namespaced
  • PVs outside the namespaces accessible to whole cluster 

Ansible_Notes

   ansible -i inventory.ini -m ping all   # inventory.ini it will ping to the hosts which are in inventory # ansible -i inventory.ini -m pin...