2017-04-14 23:16:53 +00:00
# Longhorn
2018-03-16 18:47:21 +00:00
Longhorn is a distributed block storage system for Kubernetes. Longhorn is lightweight, reliable, and easy-to-use. You can deploy Longhorn on an existing Kubernetes cluster with one simple command. Once Longhorn is deployed, it adds persistent volume support to the Kubernetes cluster.
2017-04-16 07:25:39 +00:00
2018-03-16 18:47:21 +00:00
Longhorn implements distributed block storage using containers and microservices. Longhorn creates a dedicated storage controller for each block device volume and sychronously replicates the volume across multiple replicas stored on multiple nodes. The storage controller and replicas are themselves orchestrated using Kubernetes. Longhorn supports snapshots, backups, and even allows you to schedule recurring snapshots and backups!
2017-04-14 23:16:53 +00:00
2018-01-16 01:16:18 +00:00
You can read more details of Longhorn and its design [here ](http://rancher.com/microservices-block-storage/ ).
2017-04-21 07:17:27 +00:00
2018-03-16 18:47:21 +00:00
Longhorn is a work in progress. We appreciate your comments as we continue to work on it!
2017-04-14 23:16:53 +00:00
2017-04-27 20:12:32 +00:00
## Source Code
2017-04-27 20:15:23 +00:00
Longhorn is 100% open source software. Project source code is spread across a number of repos:
2017-04-27 20:12:32 +00:00
2017-12-06 02:37:00 +00:00
1. Longhorn Engine -- Core controller/replica logic https://github.com/rancher/longhorn-engine
2018-03-16 18:47:21 +00:00
1. Longhorn Manager -- Longhorn orchestration, includes Flexvolume driver for Kubernetes https://github.com/rancher/longhorn-manager
2017-04-27 20:12:32 +00:00
1. Longhorn UI -- Dashboard https://github.com/rancher/longhorn-ui
2017-04-27 23:33:49 +00:00
2018-03-26 22:11:48 +00:00
# Demo
2018-03-27 03:50:28 +00:00
[](https://asciinema.org/a/172720?autoplay=1& loop=1& speed=2)
2018-03-26 22:11:48 +00:00
2018-08-02 03:38:51 +00:00
# Requirements
2017-04-27 23:33:49 +00:00
2018-08-02 03:38:51 +00:00
## Minimal Requirements
2017-04-27 23:33:49 +00:00
2018-08-02 03:38:51 +00:00
1. Docker v1.13+
2. Kubernetes v1.8+
3. Make sure open-iscsi has been installed in all nodes of the Kubernetes cluster. For GKE, recommended Ubuntu as guest OS image since it contains open-iscsi already.
2017-04-27 23:33:49 +00:00
2018-08-02 03:38:51 +00:00
## Kubernetes Driver Requirements
2018-08-22 03:39:53 +00:00
Longhorn can be used in Kubernetes to provide persistent storage through either Longhorn Container Storage Interface (CSI) driver or Longhorn FlexVolume driver. Longhorn will automatically deploy one of the drivers, depending on the Kubernetes cluster configuration. User can also specify the driver in the deployment yaml file. CSI is preferred.
2018-08-02 03:38:51 +00:00
### Requirement for the CSI driver
1. Kubernetes v1.10+
2018-08-02 15:59:06 +00:00
1. CSI is in beta release for this version of Kubernetes, and enabled by default.
2018-08-02 03:38:51 +00:00
2. Mount Propagation feature gate enabled.
2018-08-02 15:59:06 +00:00
1. It's enabled by default in Kubernetes v1.10. But some early versions of RKE may not enable it.
2018-08-22 03:39:53 +00:00
3. If above conditions cannot be met, Longhorn will fall back to the FlexVolume driver.
2018-08-02 03:38:51 +00:00
2018-08-10 00:14:42 +00:00
### Check if your setup satisfied CSI requirement
1. Use the following command to check your Kubernetes server version
```
2018-08-10 00:15:57 +00:00
# kubectl version
2018-08-10 00:14:42 +00:00
Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.3", GitCommit:"2bba0127d85d5a46ab4b778548be28623b32d0b0", GitTreeState:"clean", BuildDate:"2018-05-21T09:17:39Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.1", GitCommit:"d4ab47518836c750f9949b9e0d387f20fb92260b", GitTreeState:"clean", BuildDate:"2018-04-12T14:14:26Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
```
The `Server Version` should be `v1.10` or above.
2018-08-22 03:39:53 +00:00
2. Use the following script to check if `MountPropagation` feature is enabled.
2018-08-10 00:14:42 +00:00
```
2018-08-22 03:39:53 +00:00
# curl -sSfL https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/scripts/environment_check.sh | bash
pod/detect-flexvol-dir created
daemonset.apps/longhorn-environment-check created
waiting for pod/detect-flexvol-dir to finish
pod/detect-flexvol-dir completed
waiting for pods to become ready (1/7)
waiting for pods to become ready (6/7)
all pods ready (7/7)
FlexVolume Path: /var/lib/kubelet/volumeplugins
2018-08-10 00:14:42 +00:00
2018-08-22 03:39:53 +00:00
MountPropagation is enabled!
pod "detect-flexvol-dir" deleted
daemonset.apps "longhorn-environment-check" deleted
```
2018-08-02 03:38:51 +00:00
### Requirement for the Flexvolume driver
1. Kubernetes v1.8+
2. Make sure `curl` , `findmnt` , `grep` , `awk` and `blkid` has been installed in the every node of the Kubernetes cluster.
3. User need to know the volume plugin directory in order to setup the driver correctly.
1. Rancher RKE: `/var/lib/kubelet/volumeplugins`
2. Google GKE: `/home/kubernetes/flexvolume`
2018-08-22 03:39:53 +00:00
3. For any other distro, please run the directory detection script in the next section.
### Detect Volume Plugin Directory
Use the following script to detect your volume plugin directory.
```
# curl -sSfL https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/scripts/environment_check.sh | bash
pod/detect-flexvol-dir created
daemonset.apps/longhorn-environment-check created
waiting for pod/detect-flexvol-dir to finish
pod/detect-flexvol-dir completed
waiting for pods to become ready (1/7)
waiting for pods to become ready (6/7)
all pods ready (7/7)
FlexVolume Path: /var/lib/kubelet/volumeplugins
MountPropagation is enabled!
pod "detect-flexvol-dir" deleted
daemonset.apps "longhorn-environment-check" deleted
```
2018-08-02 03:38:51 +00:00
2018-08-18 00:19:22 +00:00
# Upgrading
For instructions on how to upgrade Longhorn v0.1 or v0.2 to v0.3, [see this document ](docs/upgrade.md#upgrade ).
2018-08-02 03:38:51 +00:00
# Deployment
Create the deployment of Longhorn in your Kubernetes cluster is easy.
If you're using Rancher RKE, or other distro with Kubernetes v1.10+ and Mount Propagation enabled, you can just do:
2018-03-23 01:20:50 +00:00
```
2018-08-18 00:19:22 +00:00
kubectl apply -f https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/deploy/longhorn.yaml
2018-03-23 01:20:50 +00:00
```
2018-08-02 03:38:51 +00:00
If you're using Flexvolume driver with other Kubernetes Distro, replace the value of $FLEXVOLUME_DIR in the following command with your own Flexvolume Directory as specified above.
```
FLEXVOLUME_DIR="/home/kubernetes/flexvolume/"
2018-08-02 15:23:49 +00:00
curl -s https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/deploy/longhorn.yaml|sed "s#^\( *\)value: \"/var/lib/kubelet/volumeplugins\"#\1value: \"${FLEXVOLUME_DIR}\"#g " > longhorn.yaml
2018-08-18 00:19:22 +00:00
kubectl apply -f longhorn.yaml
2018-08-02 03:38:51 +00:00
```
For Google Kubernetes Engine (GKE) users, see [here ](#google-kubernetes-engine ) before proceed.
2017-04-14 23:16:53 +00:00
2018-01-16 01:16:18 +00:00
Longhorn Manager and Longhorn Driver will be deployed as daemonsets in a separate namespace called `longhorn-system` , as you can see in the yaml file.
2017-04-14 23:16:53 +00:00
2017-12-06 02:37:00 +00:00
When you see those pods has started correctly as follows, you've deployed the Longhorn successfully.
2017-04-14 23:16:53 +00:00
2018-08-02 03:38:51 +00:00
Deployed with CSI driver:
2017-12-06 02:37:00 +00:00
```
2018-01-16 01:16:18 +00:00
# kubectl -n longhorn-system get pod
2018-08-02 03:38:51 +00:00
NAME READY STATUS RESTARTS AGE
csi-attacher-0 1/1 Running 0 6h
csi-provisioner-0 1/1 Running 0 6h
engine-image-ei-57b85e25-8v65d 1/1 Running 0 7d
engine-image-ei-57b85e25-gjjs6 1/1 Running 0 7d
engine-image-ei-57b85e25-t2787 1/1 Running 0 7d
longhorn-csi-plugin-4cpk2 2/2 Running 0 6h
longhorn-csi-plugin-ll6mq 2/2 Running 0 6h
longhorn-csi-plugin-smlsh 2/2 Running 0 6h
longhorn-driver-deployer-7b5bdcccc8-fbncl 1/1 Running 0 6h
longhorn-manager-7x8x8 1/1 Running 0 6h
longhorn-manager-8kqf4 1/1 Running 0 6h
longhorn-manager-kln4h 1/1 Running 0 6h
longhorn-ui-f849dcd85-cgkgg 1/1 Running 0 5d
```
Or with Flexvolume driver
```
# kubectl -n longhorn-system get pod
NAME READY STATUS RESTARTS AGE
engine-image-ei-57b85e25-8v65d 1/1 Running 0 7d
engine-image-ei-57b85e25-gjjs6 1/1 Running 0 7d
engine-image-ei-57b85e25-t2787 1/1 Running 0 7d
longhorn-driver-deployer-5469b87b9c-b9gm7 1/1 Running 0 2h
longhorn-flexvolume-driver-lth5g 1/1 Running 0 2h
longhorn-flexvolume-driver-tpqf7 1/1 Running 0 2h
longhorn-flexvolume-driver-v9mrj 1/1 Running 0 2h
longhorn-manager-7x8x8 1/1 Running 0 9h
longhorn-manager-8kqf4 1/1 Running 0 9h
longhorn-manager-kln4h 1/1 Running 0 9h
longhorn-ui-f849dcd85-cgkgg 1/1 Running 0 5d
2017-12-06 02:37:00 +00:00
```
## Access the UI
2018-08-02 03:38:51 +00:00
2018-01-16 01:16:18 +00:00
Use `kubectl -n longhorn-system get svc` to get the external service IP for UI:
2017-04-14 23:16:53 +00:00
```
2017-12-06 02:37:00 +00:00
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
longhorn-backend ClusterIP 10.20.248.250 < none > 9500/TCP 58m
longhorn-frontend LoadBalancer 10.20.245.110 100.200.200.123 80:30697/TCP 58m
2018-08-02 03:38:51 +00:00
2017-04-14 23:16:53 +00:00
```
2018-08-02 03:38:51 +00:00
If the Kubernetes Cluster supports creating LoadBalancer, user can then use `EXTERNAL-IP` (`100.200.200.123` in the case above) of `longhorn-frontend` to access the Longhorn UI. Otherwise the user can use `<node_ip>:<port>` (port is `30697` in the case above) to access the UI.
2018-03-26 17:52:41 +00:00
Longhorn UI would connect to the Longhorn Manager API, provides the overview of the system, the volume operations, and the snapshot/backup operations. It's highly recommended for the user to check out Longhorn UI.
Notice the current UI is unauthenticated.
2017-12-06 02:37:00 +00:00
2018-08-02 03:38:51 +00:00
# Use the Longhorn with Kubernetes
2017-12-06 02:37:00 +00:00
2018-08-02 03:38:51 +00:00
Longhorn provides persistent volume directly to Kubernetes through one of the Longhorn drivers. No matter which driver you're using, you can use Kubernetes StorageClass to provision your persistent volumes.
2017-12-06 02:37:00 +00:00
2018-08-02 03:38:51 +00:00
Use following command to create a default Longhorn StorageClass named `longhorn` .
2017-12-06 02:37:00 +00:00
```
2018-08-18 00:19:22 +00:00
kubectl apply -f https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/examples/storageclass.yaml
2017-12-06 02:37:00 +00:00
```
2018-08-04 07:31:04 +00:00
Now you can create a pod using Longhorn like this:
```
2018-08-18 00:19:22 +00:00
kubectl apply -f https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/examples/pvc.yaml
2018-08-04 07:31:04 +00:00
```
The yaml contains two parts:
1. Create a PVC using Longhorn StorageClass.
2017-04-14 23:16:53 +00:00
```
2017-12-06 02:37:00 +00:00
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: longhorn-volv-pvc
spec:
accessModes:
- ReadWriteOnce
storageClassName: longhorn
resources:
requests:
storage: 2Gi
2017-04-14 23:16:53 +00:00
```
2018-08-04 07:31:04 +00:00
2. Use it in the a Pod as a persistent volume:
2017-04-14 23:16:53 +00:00
```
2017-12-06 02:37:00 +00:00
apiVersion: v1
kind: Pod
metadata:
name: volume-test
namespace: default
spec:
containers:
- name: volume-test
2018-03-22 23:05:39 +00:00
image: nginx:stable-alpine
2017-12-06 02:37:00 +00:00
imagePullPolicy: IfNotPresent
volumeMounts:
- name: volv
mountPath: /data
ports:
- containerPort: 80
volumes:
- name: volv
persistentVolumeClaim:
claimName: longhorn-volv-pvc
2017-04-14 23:16:53 +00:00
```
2018-08-02 03:38:51 +00:00
More examples are available at `./examples/`
# Feature Usage
### Snapshot
A snapshot in Longhorn represents a volume state at a given time, stored in the same location of volume data on physical disk of the host. Snapshot creation is instant in Longhorn.
User can revert to any previous taken snapshot using the UI. Since Longhorn is a distributed block storage, please make sure the Longhorn volume is umounted from the host when revert to any previous snapshot, otherwise it will confuse the node filesystem and cause corruption.
### Backup
A backup in Longhorn represents a volume state at a given time, stored in the BackupStore which is outside of the Longhorn System. Backup creation will involving copying the data through the network, so it will take time.
A corresponding snapshot is needed for creating a backup. And user can choose to backup any snapshot previous created.
A BackupStore is a NFS server or S3 compatible server.
A BackupTarget represents a BackupStore in the Longhorn System. The BackupTarget can be set at `Settings/General/BackupTarget`
If user is using a S3 compatible server as the BackupTarget, the BackupTargetSecret is needed for authentication informations. User need to manually create it as a Kubernetes Secret in the `longhorn-system` namespace. See below for details.
#### Setup a testing backupstore
We provides two testing purpose backupstore based on NFS server and Minio S3 server for testing, in `./deploy/backupstores` .
Use following command to setup a Minio S3 server for BackupStore after `longhorn-system` was created.
```
2018-08-18 00:19:22 +00:00
kubectl apply -f https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/deploy/backupstores/minio-backupstore.yaml
2018-08-02 03:38:51 +00:00
```
Now set `Settings/General/BackupTarget` to
```
2018-08-02 20:40:10 +00:00
s3://backupbucket@us-east-1/backupstore
2018-08-02 03:38:51 +00:00
```
And `Setttings/General/BackupTargetSecret` to
```
minio-secret
```
Click the `Backup` tab in the UI, it should report an empty list without error out.
2018-08-04 07:31:04 +00:00
The `minio-secret` yaml looks like this:
```
apiVersion: v1
kind: Secret
metadata:
name: minio-secret
namespace: longhorn-system
type: Opaque
data:
AWS_ACCESS_KEY_ID: bG9uZ2hvcm4tdGVzdC1hY2Nlc3Mta2V5 # longhorn-test-access-key
AWS_SECRET_ACCESS_KEY: bG9uZ2hvcm4tdGVzdC1zZWNyZXQta2V5 # longhorn-test-secret-key
AWS_ENDPOINTS: aHR0cDovL21pbmlvLXNlcnZpY2UuZGVmYXVsdDo5MDAw # http://minio-service.default:9000
```
2018-08-07 00:31:11 +00:00
Notice the secret must be created in the `longhorn-system` namespace for Longhorn to access.
2018-08-04 07:31:04 +00:00
2018-08-02 03:38:51 +00:00
### Recurring Snapshot and Backup
Longhorn supports recurring snapshot and backup for volumes. User only need to set when he/she wish to take the snapshot and/or backup, and how many snapshots/backups needs to be retains, then Longhorn will automatically create snapshot/backup for the user at that time, as long as the volume is attached to a node.
User can find the setting for the recurring snapshot and backup in the `Volume Detail` page.
2018-08-02 23:39:12 +00:00
## Other topics
2018-08-02 03:38:51 +00:00
2018-08-10 02:30:42 +00:00
### [Upgrade from v0.2](./docs/upgrade.md)
2018-08-02 23:39:12 +00:00
### [Multiple disks support](./docs/multidisk.md)
2018-08-08 07:23:04 +00:00
### [iSCSI support](./docs/iscsi.md)
2018-08-02 23:39:12 +00:00
### [Google Kubernetes Engine](./docs/gke.md)
### [Troubleshotting](./docs/troubleshooting.md)
2018-08-07 00:31:11 +00:00
### [Restoring Stateful Set volumes](./docs/restore_statefulset.md)
2018-08-10 00:49:42 +00:00
### [Base Image support](./docs/base-image.md)
2017-04-14 23:16:53 +00:00
2018-08-02 03:38:51 +00:00
## Uninstall Longhorn
Longhorn CRD has finalizers in them, so user should delete the volumes and related resource first, give manager a chance to clean up after them.
2017-04-14 23:16:53 +00:00
2018-08-02 03:38:51 +00:00
### 1. Clean up volume and related resources
2018-03-23 01:20:50 +00:00
2017-04-14 23:16:53 +00:00
```
2018-08-02 03:38:51 +00:00
kubectl -n longhorn-system delete volumes.longhorn.rancher.io --all
2017-04-14 23:16:53 +00:00
```
2017-04-15 02:30:02 +00:00
2018-08-02 03:38:51 +00:00
Check the result using:
2018-01-16 01:16:18 +00:00
```
2018-08-02 03:38:51 +00:00
kubectl -n longhorn-system get volumes.longhorn.rancher.io
kubectl -n longhorn-system get engines.longhorn.rancher.io
kubectl -n longhorn-system get replicas.longhorn.rancher.io
2018-01-16 01:16:18 +00:00
```
2017-04-15 02:30:02 +00:00
2018-08-02 03:38:51 +00:00
Make sure all reports `No resources found.` before continuing.
### 2. Clean up engine images and nodes
2018-01-16 01:16:18 +00:00
2017-12-06 02:37:00 +00:00
```
2018-08-02 03:38:51 +00:00
kubectl -n longhorn-system delete engineimages.longhorn.rancher.io --all
kubectl -n longhorn-system delete nodes.longhorn.rancher.io --all
2017-12-06 02:37:00 +00:00
```
2017-04-16 07:25:39 +00:00
2018-08-02 03:38:51 +00:00
Check the result using:
2018-03-23 01:20:50 +00:00
```
2018-08-02 03:38:51 +00:00
kubectl -n longhorn-system get engineimages.longhorn.rancher.io
kubectl -n longhorn-system get nodes.longhorn.rancher.io
2018-03-23 01:20:50 +00:00
```
2018-08-02 03:38:51 +00:00
Make sure all reports `No resources found.` before continuing.
### 3. Uninstall Longhorn System
2018-01-16 01:16:18 +00:00
```
2018-08-02 15:23:49 +00:00
kubectl delete -f https://raw.githubusercontent.com/rancher/longhorn/v0.3-rc/deploy/longhorn.yaml
2018-01-16 01:16:18 +00:00
```
2018-03-23 01:20:50 +00:00
2017-04-16 07:25:39 +00:00
## License
2018-08-02 03:38:51 +00:00
Copyright (c) 2014-2018 [Rancher Labs, Inc. ](http://rancher.com/ )
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
2017-04-16 07:25:39 +00:00
[http://www.apache.org/licenses/LICENSE-2.0 ](http://www.apache.org/licenses/LICENSE-2.0 )
2018-08-02 03:38:51 +00:00
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.