text
stringlengths
0
59.1k
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: fast0001
spec:
accessModes:
- ReadWriteOnce
storageClassName: fast
resources:
requests:
storage: 5Gi
<|endoftext|>
# source: k8s_examples/_archived/volumes/storageos/storageos-sc.yaml type: yaml
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: sc-fast
provisioner: kubernetes.io/storageos
parameters:
pool: default
description: Kubernetes volume
fsType: ext4
adminSecretNamespace: default
adminSecretName: storageos-secret
<|endoftext|>
# source: k8s_examples/_archived/volumes/scaleio/pod-sc-pvc.yaml type: yaml
kind: Pod
apiVersion: v1
metadata:
name: pod-sio-small
spec:
containers:
- name: pod-sio-small-container
image: registry.k8s.io/test-webserver
volumeMounts:
- mountPath: /test
name: test-data
volumes:
- name: test-data
persistentVolumeClaim:
claimName: pvc-sio-small
<|endoftext|>
# source: k8s_examples/_archived/volumes/scaleio/sc-pvc.yaml type: yaml
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: pvc-sio-small
spec:
storageClassName: sio-small
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: sio-small
<|endoftext|>
# source: k8s_examples/_archived/volumes/scaleio/pod.yaml type: yaml
apiVersion: v1
kind: Pod
metadata:
name: pod-0
spec:
containers:
- image: registry.k8s.io/test-webserver
name: pod-0
volumeMounts:
- mountPath: /test-pd
name: vol-0
volumes:
- name: vol-0
scaleIO:
gateway: https://localhost:443/api
system: scaleio
protectionDoamin: pd01
storagePool: sp01
volumeName: vol-0
secretRef:
name: sio-secret
fsType: xfs
<|endoftext|>
# source: k8s_examples/_archived/volumes/scaleio/README.md type: docs
# Dell EMC ScaleIO Volume Plugin for Kubernetes
This document shows how to configure Kubernetes resources to consume storage from volumes hosted on ScaleIO cluster.
## Pre-Requisites
* Kubernetes ver 1.6 or later
* ScaleIO ver 2.0 or later
* A ScaleIO cluster with an API gateway
* ScaleIO SDC binary installed/configured on each Kubernetes node that will consume storage
## ScaleIO Setup
This document assumes you are familiar with ScaleIO and have a cluster ready to go. If you are *not familiar* with ScaleIO, please review *Learn how to setup a 3-node* [ScaleIO cluster on Vagrant](https://github.com/codedellemc/labs/tree/master/setup-scaleio-vagrant) and see *General instructions on* [setting up Scale...