Last active
February 23, 2017 18:17
-
-
Save goern/5954201aad3c275816784a4a7f925dfb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oc login -u system:admin | |
cat <<-EOF > /tmp/pv.yaml | |
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: pv0001 | |
spec: | |
capacity: | |
storage: 1Gi | |
accessModes: | |
- ReadWriteOnce | |
- ReadWriteMany | |
persistentVolumeReclaimPolicy: Retain | |
hostPath: | |
path: /home/goern/.oc/volumes/pv0001 | |
EOF | |
for i in `seq -w 0001 0020`; do SHARE=pv$i; mkdir -p $SHARE; chmod 777 $SHARE; sed s/pv0001/pv$i/g /tmp/pv.yaml | oc create -f - --as=system:admin; done | |
chcon -Rt svirt_sandbox_file_t /home/goern/.oc/volumes/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment