mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-15 11:46:06 +00:00
Changed the order of the plugins, and added a Prototype status
Signed-off-by: jonasrosland <jrosland@vmware.com>
This commit is contained in:
+57
-22
@@ -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>
|
||||
|
||||
+1
-1
@@ -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.
|
||||
Reference in New Issue
Block a user