Untitled
plain_text
2 months ago
275 B
1
Indexable
Never
#!/bin/bash # Task 1: Create Persistent Volume kubectl apply -f - <<EOF apiVersion: v1 kind: PersistentVolume metadata: name: pv-analytics spec: capacity: storage: 100Mi accessModes: - ReadWriteMany hostPath: path: /pv/data-analytics EOF