├── LICENSE ├── README.md ├── environments └── docker │ ├── daemon.json │ ├── docker.service │ ├── packer.json │ └── scripts │ └── packages.sh ├── ephemeral ├── 000-install-storageos.sh ├── 000-introduction.md ├── 010-setup-environment.md ├── 020-deploy-pods-volumes.md ├── 030-create-data.md ├── 040-redeploy-pods.md ├── assets │ ├── install-etcd.sh │ ├── mysql-pod1.yaml │ ├── mysql-pod2.yaml │ ├── storageos-pvc.yaml │ └── verify-healthy.sh ├── finish.md ├── index.json └── verify-healthy.sh ├── ha-mysql ├── 000-install-storageos.sh ├── 000-introduction.md ├── 010-setup-environment.md ├── 020-persistent-volume.md ├── 030-test-data.md ├── 040-move-pod.md ├── 050-stop-node.md ├── 060-failover.md ├── assets │ ├── install-etcd.sh │ ├── mysql-pod1.yaml │ ├── storageos-cli.yaml │ ├── storageos-pvc.yaml │ └── verify-healthy.sh ├── finish.md ├── index.json └── verify-healthy.sh ├── homepage-pathway.json ├── influxdb ├── 000-install-storageos.sh ├── 000-introduction.md ├── 010-setup-environment.md ├── 020-deploy-pods-service.md ├── 030-create-query-data.md ├── assets │ ├── install-etcd.sh │ └── verify-healthy.sh ├── finish.md ├── index.json └── verify-healthy.sh ├── install-storageos ├── 000-install-storageos.sh ├── 000-introduction.md ├── 010-install-etcd.md ├── 020-install-storageos.md ├── 030-install-storageos-cli.md ├── 040-persistent-volume-claim.md ├── 050-access-ui.md ├── 060-cluster-licence.md ├── assets │ ├── deploy-etcd.sh │ └── install-etcd.sh ├── finish.md └── index.json ├── pvc-basic ├── 000-install-storageos.sh ├── 000-introduction.md ├── 010-setup-env.md ├── 020-development-pvc.md ├── 030-production-pvc.md ├── 040-replication-in-pvc.md ├── 050-storageos-volume-check.md ├── 060-create-pod.md ├── 070-pod-restart.md ├── assets │ ├── install-etcd.sh │ ├── mysql-pod1.yaml │ ├── mysql-pod2.yaml │ ├── storageos-cluster.yaml │ ├── storageos-daemonset.yaml │ ├── storageos-pvc.yaml │ ├── storageos-secret.yaml │ ├── storageos-service.yaml │ ├── storageos-storageclass.yaml │ └── verify-healthy.sh ├── finish.md ├── index.json └── verify-healthy.sh └── training ├── cc-pathway.json └── cc-test1-pathway.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/README.md -------------------------------------------------------------------------------- /environments/docker/daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/environments/docker/daemon.json -------------------------------------------------------------------------------- /environments/docker/docker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/environments/docker/docker.service -------------------------------------------------------------------------------- /environments/docker/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/environments/docker/packer.json -------------------------------------------------------------------------------- /environments/docker/scripts/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/environments/docker/scripts/packages.sh -------------------------------------------------------------------------------- /ephemeral/000-install-storageos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/000-install-storageos.sh -------------------------------------------------------------------------------- /ephemeral/000-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/000-introduction.md -------------------------------------------------------------------------------- /ephemeral/010-setup-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/010-setup-environment.md -------------------------------------------------------------------------------- /ephemeral/020-deploy-pods-volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/020-deploy-pods-volumes.md -------------------------------------------------------------------------------- /ephemeral/030-create-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/030-create-data.md -------------------------------------------------------------------------------- /ephemeral/040-redeploy-pods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/040-redeploy-pods.md -------------------------------------------------------------------------------- /ephemeral/assets/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/assets/install-etcd.sh -------------------------------------------------------------------------------- /ephemeral/assets/mysql-pod1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/assets/mysql-pod1.yaml -------------------------------------------------------------------------------- /ephemeral/assets/mysql-pod2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/assets/mysql-pod2.yaml -------------------------------------------------------------------------------- /ephemeral/assets/storageos-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/assets/storageos-pvc.yaml -------------------------------------------------------------------------------- /ephemeral/assets/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/assets/verify-healthy.sh -------------------------------------------------------------------------------- /ephemeral/finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/finish.md -------------------------------------------------------------------------------- /ephemeral/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/index.json -------------------------------------------------------------------------------- /ephemeral/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ephemeral/verify-healthy.sh -------------------------------------------------------------------------------- /ha-mysql/000-install-storageos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/000-install-storageos.sh -------------------------------------------------------------------------------- /ha-mysql/000-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/000-introduction.md -------------------------------------------------------------------------------- /ha-mysql/010-setup-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/010-setup-environment.md -------------------------------------------------------------------------------- /ha-mysql/020-persistent-volume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/020-persistent-volume.md -------------------------------------------------------------------------------- /ha-mysql/030-test-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/030-test-data.md -------------------------------------------------------------------------------- /ha-mysql/040-move-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/040-move-pod.md -------------------------------------------------------------------------------- /ha-mysql/050-stop-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/050-stop-node.md -------------------------------------------------------------------------------- /ha-mysql/060-failover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/060-failover.md -------------------------------------------------------------------------------- /ha-mysql/assets/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/assets/install-etcd.sh -------------------------------------------------------------------------------- /ha-mysql/assets/mysql-pod1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/assets/mysql-pod1.yaml -------------------------------------------------------------------------------- /ha-mysql/assets/storageos-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/assets/storageos-cli.yaml -------------------------------------------------------------------------------- /ha-mysql/assets/storageos-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/assets/storageos-pvc.yaml -------------------------------------------------------------------------------- /ha-mysql/assets/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/assets/verify-healthy.sh -------------------------------------------------------------------------------- /ha-mysql/finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/finish.md -------------------------------------------------------------------------------- /ha-mysql/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/index.json -------------------------------------------------------------------------------- /ha-mysql/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/ha-mysql/verify-healthy.sh -------------------------------------------------------------------------------- /homepage-pathway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/homepage-pathway.json -------------------------------------------------------------------------------- /influxdb/000-install-storageos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/000-install-storageos.sh -------------------------------------------------------------------------------- /influxdb/000-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/000-introduction.md -------------------------------------------------------------------------------- /influxdb/010-setup-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/010-setup-environment.md -------------------------------------------------------------------------------- /influxdb/020-deploy-pods-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/020-deploy-pods-service.md -------------------------------------------------------------------------------- /influxdb/030-create-query-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/030-create-query-data.md -------------------------------------------------------------------------------- /influxdb/assets/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/assets/install-etcd.sh -------------------------------------------------------------------------------- /influxdb/assets/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/assets/verify-healthy.sh -------------------------------------------------------------------------------- /influxdb/finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/finish.md -------------------------------------------------------------------------------- /influxdb/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/index.json -------------------------------------------------------------------------------- /influxdb/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/influxdb/verify-healthy.sh -------------------------------------------------------------------------------- /install-storageos/000-install-storageos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/000-install-storageos.sh -------------------------------------------------------------------------------- /install-storageos/000-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/000-introduction.md -------------------------------------------------------------------------------- /install-storageos/010-install-etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/010-install-etcd.md -------------------------------------------------------------------------------- /install-storageos/020-install-storageos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/020-install-storageos.md -------------------------------------------------------------------------------- /install-storageos/030-install-storageos-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/030-install-storageos-cli.md -------------------------------------------------------------------------------- /install-storageos/040-persistent-volume-claim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/040-persistent-volume-claim.md -------------------------------------------------------------------------------- /install-storageos/050-access-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/050-access-ui.md -------------------------------------------------------------------------------- /install-storageos/060-cluster-licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/060-cluster-licence.md -------------------------------------------------------------------------------- /install-storageos/assets/deploy-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/assets/deploy-etcd.sh -------------------------------------------------------------------------------- /install-storageos/assets/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/assets/install-etcd.sh -------------------------------------------------------------------------------- /install-storageos/finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/finish.md -------------------------------------------------------------------------------- /install-storageos/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/install-storageos/index.json -------------------------------------------------------------------------------- /pvc-basic/000-install-storageos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/000-install-storageos.sh -------------------------------------------------------------------------------- /pvc-basic/000-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/000-introduction.md -------------------------------------------------------------------------------- /pvc-basic/010-setup-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/010-setup-env.md -------------------------------------------------------------------------------- /pvc-basic/020-development-pvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/020-development-pvc.md -------------------------------------------------------------------------------- /pvc-basic/030-production-pvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/030-production-pvc.md -------------------------------------------------------------------------------- /pvc-basic/040-replication-in-pvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/040-replication-in-pvc.md -------------------------------------------------------------------------------- /pvc-basic/050-storageos-volume-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/050-storageos-volume-check.md -------------------------------------------------------------------------------- /pvc-basic/060-create-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/060-create-pod.md -------------------------------------------------------------------------------- /pvc-basic/070-pod-restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/070-pod-restart.md -------------------------------------------------------------------------------- /pvc-basic/assets/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/install-etcd.sh -------------------------------------------------------------------------------- /pvc-basic/assets/mysql-pod1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/mysql-pod1.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/mysql-pod2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/mysql-pod2.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-cluster.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-daemonset.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-pvc.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-secret.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-service.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/storageos-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/storageos-storageclass.yaml -------------------------------------------------------------------------------- /pvc-basic/assets/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/assets/verify-healthy.sh -------------------------------------------------------------------------------- /pvc-basic/finish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/finish.md -------------------------------------------------------------------------------- /pvc-basic/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/index.json -------------------------------------------------------------------------------- /pvc-basic/verify-healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/pvc-basic/verify-healthy.sh -------------------------------------------------------------------------------- /training/cc-pathway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/training/cc-pathway.json -------------------------------------------------------------------------------- /training/cc-test1-pathway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storageos/tutorials/HEAD/training/cc-test1-pathway.json --------------------------------------------------------------------------------