Changed the order of the plugins, and added a Prototype status

Signed-off-by: jonasrosland <jrosland@vmware.com>
This commit is contained in:
jonasrosland
2020-03-03 16:42:41 -05:00
parent f1b1dc7c22
commit 6fe4d84ae3
12 changed files with 59 additions and 24 deletions
+57 -22
View File
@@ -5,29 +5,64 @@
<div class="col-md">
<div class="card card-light mb-3 mb-md-0 shadow-sm">
<div class="card-body match-height">
{% if plugin.link.size > 0 %}
<h5><a href="{{ plugin.link }}" class="dark">{{ plugin.title }}</a></h5>
{% else %}
<h5>{{ plugin.title }}</h5>
{% if plugin.supported-by-velero-team == "true" %}
{% if plugin.link.size > 0 %}
<h5><a href="{{ plugin.link }}" class="dark">{{ plugin.title }}</a></h5>
{% else %}
<h5>{{ plugin.title }}</h5>
{% endif %}
<p>{{ plugin.content }}</p>
{% if plugin.object-storage %}
<img src="https://img.shields.io/badge/Object Storage-supported-green">
{% endif %}
{% if plugin.volumesnapshotter %}
<img src="https://img.shields.io/badge/VolumeSnapshotter-supported-green">
{% endif %}
{% if plugin.local-storage %}
<img src="https://img.shields.io/badge/Local Storage-supported-green">
{% endif %}
{% if plugin.supported-by-velero-team %}
<img src="https://img.shields.io/badge/Supported%20By-Velero%20team-blue">
{% endif %}
{% if plugin.BackupItemAction %}
<img src="https://img.shields.io/badge/BackupItemAction-supported-green">
{% endif %}
{% if plugin.RestoreItemAction %}
<img src="https://img.shields.io/badge/RestoreItemAction-supported-green">
{% endif %}
{% endif %}
<p>{{ plugin.content }}</p>
{% if plugin.object-storage %}
<img src="https://img.shields.io/badge/Object Storage-supported-green">
{% endif %}
{% if plugin.volumesnapshotter %}
<img src="https://img.shields.io/badge/VolumeSnapshotter-supported-green">
{% endif %}
{% if plugin.local-storage %}
<img src="https://img.shields.io/badge/Local Storage-supported-green">
{% endif %}
{% if plugin.supported-by-velero-team %}
<img src="https://img.shields.io/badge/Supported%20By-Velero%20team-blue">
{% endif %}
{% if plugin.BackupItemAction %}
<img src="https://img.shields.io/badge/BackupItemAction-supported-green">
{% endif %}
{% if plugin.RestoreItemAction %}
<img src="https://img.shields.io/badge/RestoreItemAction-supported-green">
</div>
</div>
<div class="card card-light mb-3 mb-md-0 shadow-sm">
<div class="card-body match-height">
{% if plugin.supported-by-velero-team != "true" && plugin.prototype != "true" %}
{% if plugin.link.size > 0 %}
<h5><a href="{{ plugin.link }}" class="dark">{{ plugin.title }}</a></h5>
{% else %}
<h5>{{ plugin.title }}</h5>
{% endif %}
<p>{{ plugin.content }}</p>
{% if plugin.object-storage %}
<img src="https://img.shields.io/badge/Object Storage-supported-green">
{% endif %}
{% if plugin.volumesnapshotter %}
<img src="https://img.shields.io/badge/VolumeSnapshotter-supported-green">
{% endif %}
{% if plugin.local-storage %}
<img src="https://img.shields.io/badge/Local Storage-supported-green">
{% endif %}
{% if plugin.supported-by-velero-team %}
<img src="https://img.shields.io/badge/Supported%20By-Velero%20team-blue">
{% endif %}
{% if plugin.BackupItemAction %}
<img src="https://img.shields.io/badge/BackupItemAction-supported-green">
{% endif %}
{% if plugin.RestoreItemAction %}
<img src="https://img.shields.io/badge/RestoreItemAction-supported-green">
{% endif %}
{% if plugin.prototype %}
<img src="https://img.shields.io/badge/Prototype-yes-yellow">
{% endif %}
{% endif %}
</div>
</div>
@@ -4,6 +4,6 @@ link: https://github.com/vmware-tanzu/velero-plugin-for-csi
object-storage: false
volumesnapshotter: true
local-storage: true
supported-by-velero-team: true
prototype: true
---
This repository contains alpha plugins for CSI snapshotting via Velero. These plugins are considered experimental and should _not_ be relied upon for production use.
@@ -4,6 +4,6 @@ link: https://github.com/vmware-tanzu/velero-plugin-for-vsphere
object-storage: false
volumesnapshotter: true
local-storage: true
supported-by-velero-team: true
prototype: true
---
This repository contains a volume snapshotter plugin to support running Velero on VMware vSphere.