summaryrefslogtreecommitdiffstats
path: root/wiki/openshift/data-create.sh
blob: 9a6610cc93c379242274f46d06335486713df5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

cat > tmp/data.yaml << EOF
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: data
spec:
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 1Gi
EOF

oc create -f tmp/data.yaml