Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README and changelog for 1.9.0 #221

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Below is a listing of plugin versions and respective Velero versions that are co

| Plugin Version | Velero Version |
|----------------|----------------|
| v1.9.x | v1.13.x |
| v1.8.x | v1.12.x |
| v1.7.x | v1.11.x |
| v1.6.x | v1.10.x |
Expand Down Expand Up @@ -432,7 +433,7 @@ Install Velero, including all prerequisites, into the cluster and start the depl
```bash
velero install \
--provider azure \
--plugins velero/velero-plugin-for-microsoft-azure:v1.8.0 \
--plugins velero/velero-plugin-for-microsoft-azure:v1.9.0 \
--bucket $BLOB_CONTAINER \
--secret-file ./credentials-velero \
--backup-location-config useAAD="true",resourceGroup=$AZURE_BACKUP_RESOURCE_GROUP,storageAccount=$AZURE_STORAGE_ACCOUNT_ID[,subscriptionId=$AZURE_BACKUP_SUBSCRIPTION_ID] \
Expand All @@ -446,7 +447,7 @@ velero install \
--provider azure \
--service-account-name velero \
--pod-labels azure.workload.identity/use=true \
--plugins velero/velero-plugin-for-microsoft-azure:v1.8.0 \
--plugins velero/velero-plugin-for-microsoft-azure:v1.9.0 \
--bucket $BLOB_CONTAINER \
--secret-file ./credentials-velero \
--backup-location-config useAAD="true",resourceGroup=$AZURE_BACKUP_RESOURCE_GROUP,storageAccount=$AZURE_STORAGE_ACCOUNT_ID[,subscriptionId=$AZURE_BACKUP_SUBSCRIPTION_ID] \
Expand All @@ -463,7 +464,7 @@ You can chose to provide the Storage Account's blob endpoint directly to Velero.
```bash
velero install \
--provider azure \
--plugins velero/velero-plugin-for-microsoft-azure:v1.8.0 \
--plugins velero/velero-plugin-for-microsoft-azure:v1.9.0 \
--bucket $BLOB_CONTAINER \
--secret-file ./credentials-velero \
--backup-location-config storageAccountURI="https://xxxxxx.blob.core.windows.net",useAAD="true",resourceGroup=$AZURE_BACKUP_RESOURCE_GROUP,storageAccount=$AZURE_STORAGE_ACCOUNT_ID[,subscriptionId=$AZURE_BACKUP_SUBSCRIPTION_ID] \
Expand Down Expand Up @@ -495,7 +496,7 @@ Limitation: Listing storage account access key is still needed for Restic to wor
```bash
velero install \
--provider azure \
--plugins velero/velero-plugin-for-microsoft-azure:v1.8.0 \
--plugins velero/velero-plugin-for-microsoft-azure:v1.9.0 \
--bucket $BLOB_CONTAINER \
--secret-file ./credentials-velero \
--backup-location-config resourceGroup=$AZURE_BACKUP_RESOURCE_GROUP,storageAccount=$AZURE_STORAGE_ACCOUNT_ID,storageAccountKeyEnvVar=AZURE_STORAGE_ACCOUNT_ACCESS_KEY[,subscriptionId=$AZURE_BACKUP_SUBSCRIPTION_ID] \
Expand Down
7 changes: 7 additions & 0 deletions changelogs/CHANGELOG-1.9.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## All changes

- Refactor the Azure plugin (#206, @ywk253100)
- Adjust the buffer size to avoid OOM (#210, @ywk253100)
- Add MSI Support for Azure plugin (#212, @yanggangtony)
- Bump version of Azure Compute SDK to support Prem SSD V2 (#215, @ywk253100)
- Fix docs around storageaccounturi (#218, @anshulahuja98)
Loading