Please note: this driver is provided on a best-effort basis and is not currently officially supported for LKE or Linode compute. Please try and let us know your feedback! Thanks.
This README explains how to install and configure the Linode Block Storage provider plugin for Velero. The plugin is designed to create filesystem snapshots of Block Storage backed PersistentVolumes that are used in a Kubernetes cluster running on Linode.
- A Kubernetes cluster running on Linode. It can be a managed cluster or self-hosted
- Linode account and resources
- API personal access token
- Object Storage access keys
- Object Storage bucket
- Object Storage bucket region
- Velero v1.20 or newer & prerequisites
-
To use this plugin with Velero to create persistent volume snapshots, you will need a Linode API token. Create one before proceeding with the rest of these steps.
-
For the object storage Velero component, generate an Object Storage access key and secret key
-
Complete the Prerequisites and Credentials setup steps mentioned above.
-
Clone this repository.
cd
into theexamples
directory and edit thecloud-credentials
file. The file will look like this:[default] aws_access_key_id=<AWS_ACCESS_KEY_ID> aws_secret_access_key=<AWS_SECRET_ACCESS_KEY>
Edit the
<AWS_ACCESS_KEY_ID>
and<AWS_SECRET_ACCESS_KEY>
placeholders to use your Linode Object Storage keys. Be sure to remove the<
and>
characters. -
Still in the
examples
directory, edit the01-velero-secret.patch.yaml
file. It should look like this:--- apiVersion: v1 kind: Secret stringData: linode_token: <LINODE_API_TOKEN> type: Opaque
- Change the entire
<LINODE_API_TOKEN>
portion to use your Linode personal API token. The line should look something likelinode_token: 18a0d730c0e0....
- Change the entire
-
Now you're ready to install velero, configure the snapshot storage location, and work with backups. Ensure that you edit each of the following settings to match your Spaces configuration befor running the
velero install
command:--bucket velero-backups
- Ensure you change thevelero-backups
value to match the name of your Space.--backup-location-config s3Url=https://us-east-1.linodeobjects.com,region=us-east-1
- Change the URL and region to match your Object Storage settings. Specifically, edit theus-east-1
portion in both to match the region where your Space is hosted. Use one ofus-east-1
,eu-central-1
depending on your region.
-
Now run the install command:
velero install \ --provider velero.io/aws \ --bucket velero-backups \ --plugins velero/velero-plugin-for-aws:v1.0.1,displague/velero-plugin-linode:v0.0.1 \ --backup-location-config s3Url=https://us-east-1.linodeobjects.com,region=us-east-1 \ --use-volume-snapshots=false \ --secret-file=./cloud-credentials
-
Enable the
displague/velero-plugin-linode:v0.0.1
snapshot provider. This command will configure Velero to use the plugin for persistent volume snapshots.velero snapshot-location create default --provider linode.com/velero
-
Patch the
cloud-credentials
Kubernetes Secret object that thevelero install
command installed in the cluster. This command will add your Linode API token to thecloud-credentials
object so that this plugin can use the Linode API:kubectl patch secret cloud-credentials -p "$(cat 01-velero-secret.patch.yaml)" --namespace velero
-
Patch the
velero
Kubernetes Deployment to expose your API token to the Velero pod(s). Velero needs this change in order to authenticate to the Linode API when manipulating snapshots:kubectl patch deployment velero -p "$(cat 02-velero-deployment.patch.yaml)" --namespace velero
-
Install the Nginx
examples/nginx-example.yaml
Deployment into your cluster. The example uses a persistent volume for Nginx logs. It also creates a NodeBalancer with a public IP address:kubectl apply -f examples/nginx-example.yaml
-
Ensure that your Nginx Deployment is running and there is a Service with an
EXTERNAL-IP
(kubectl get service --namespace nginx-example
). Browse the IP a few times to write some log entries to the persistent volume. Then create a backup with Velero:velero backup create nginx-backup --selector app=nginx --snapshot-volumes=true velero backup describe nginx-backup --details
-
The various backup files will be in your Spaces bucket. A snapshot of the persistent volume will be listed in the Linode control panel under the Volumes tab. Now you can simulate a disaster by deleting the
nginx-example
namespace.kubectl delete namespace nginx-example
-
Once the delete finishes, restore the
nginx-backup
backup:velero restore create --from-backup nginx-backup
-
Check the restored PersistentVolume, Deployment, and Service are back using
kubectl
:kubectl get persistentvolume --namespace nginx-example kubectl get service --namespace nginx-example kubectl get deployment --namespace nginx-example
make clean
make container IMAGE=displague/velero-plugin-linode:dev