Skip to content

Commit

Permalink
Update docs with references to new tag v0.5.0 (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: Ondrej Vasko <[email protected]>
  • Loading branch information
Lirt authored Mar 2, 2023
1 parent 6ecbbee commit 44f5211
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Below is a matrix of plugin versions and Velero versions for which the compatibi

| Plugin Version | Velero Version |
| :------------- | :------------- |
| v0.5.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x, 1.10.x |
| v0.4.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x |
| v0.3.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x |
| v0.2.x | v1.4.x, v1.5.x |
Expand Down Expand Up @@ -193,15 +194,15 @@ Initialize velero plugin:
# Initialize velero from scratch:
velero install \
--provider "community.openstack.org/openstack" \
--plugins lirt/velero-plugin-for-openstack:v0.4.1 \
--plugins lirt/velero-plugin-for-openstack:v0.5.0 \
--bucket <SWIFT_CONTAINER_NAME> \
--no-secret

# Or add plugin to existing velero:
velero plugin add lirt/velero-plugin-for-openstack:v0.4.1
velero plugin add lirt/velero-plugin-for-openstack:v0.5.0
```

Note: If you want to use plugin built for `arm` or `arm64` architecture, you can use tag such as this `lirt/velero-plugin-for-openstack:v0.4.1-arm64`.
Note: If you want to use plugin built for `arm` or `arm64` architecture, you can use tag such as this `lirt/velero-plugin-for-openstack:v0.5.0-arm64`.

Change configuration of `backupstoragelocations.velero.io`:

Expand Down Expand Up @@ -256,7 +257,7 @@ configuration:
# resticRepoPrefix: swift:my-awesome-container:/restic # Example
initContainers:
- name: velero-plugin-openstack
image: lirt/velero-plugin-for-openstack:v0.4.1
image: lirt/velero-plugin-for-openstack:v0.5.0
imagePullPolicy: IfNotPresent
volumeMounts:
- mountPath: /target
Expand Down Expand Up @@ -319,7 +320,7 @@ docker buildx create --use
docker buildx build \
--file docker/Dockerfile \
--platform "linux/amd64" \
--tag lirt/velero-plugin-for-openstack:v0.4.1 \
--tag lirt/velero-plugin-for-openstack:v0.5.0 \
--no-cache \
--load \
.
Expand All @@ -328,7 +329,7 @@ docker buildx build \
docker buildx build \
--file docker/Dockerfile \
--platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \
--tag lirt/velero-plugin-for-openstack:v0.4.1 \
--tag lirt/velero-plugin-for-openstack:v0.5.0 \
--no-cache \
--push \
.
Expand All @@ -339,7 +340,7 @@ docker buildx build \
for platform in linux/amd64 linux/arm/v6 linux/arm/v7 linux/arm64; do
docker buildx build \
--file docker/Dockerfile \
--tag lirt/velero-plugin-for-openstack:v0.4.1 \
--tag lirt/velero-plugin-for-openstack:v0.5.0 \
--platform "${platform}" \
--no-cache \
--load \
Expand Down
2 changes: 2 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* [`v0.3.1` (Dockerfile)](https://github.com/Lirt/velero-plugin-for-openstack/blob/v0.3.1/docker/Dockerfile)
* [`v0.4.0` (Dockerfile)](https://github.com/Lirt/velero-plugin-for-openstack/blob/v0.4.0/docker/Dockerfile)
* [`v0.4.1` (Dockerfile)](https://github.com/Lirt/velero-plugin-for-openstack/blob/v0.4.1/docker/Dockerfile)
* [`v0.5.0` (Dockerfile)](https://github.com/Lirt/velero-plugin-for-openstack/blob/v0.5.0/docker/Dockerfile)

# Velero plugin for OpenStack

Expand All @@ -22,6 +23,7 @@ Below is a listing of plugin versions and respective Velero versions for which t

| Plugin Version | Velero Version |
| :------------- | :------------- |
| v0.5.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x, 1.10.x |
| v0.4.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x |
| v0.3.x | v1.4.x, v1.5.x, v1.6.x, v1.7.x, v1.8.x, 1.9.x |
| v0.2.x | v1.4.x, v1.5.x |
Expand Down

0 comments on commit 44f5211

Please sign in to comment.