From 763efc0d32404bc748f6835f5c253f2b61b7ad42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wenkai=20Yin=28=E5=B0=B9=E6=96=87=E5=BC=80=29?= Date: Thu, 16 May 2024 16:53:20 +0800 Subject: [PATCH] Add changelog for v1.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add changelog for v1.10.0 Signed-off-by: Wenkai Yin(尹文开) --- README.md | 13 ++++++------- changelogs/CHANGELOG-1.10.0.md | 4 ++++ 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 changelogs/CHANGELOG-1.10.0.md diff --git a/README.md b/README.md index 4ebc9f2..a81bcdd 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,12 @@ Below is a listing of plugin versions and respective Velero versions that are co | Plugin Version | Velero Version | |----------------|----------------| +| v1.10.x | v1.14.x | | v1.9.x | v1.13.x | | v1.8.x | v1.12.x | | v1.7.x | v1.11.x | | v1.6.x | v1.10.x | -| v1.5.x | v1.9.x | -| v1.4.x | v1.8.x | -| v1.3.x | v1.7.x | + ## Filing issues @@ -491,7 +490,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.9.0 \ + --plugins velero/velero-plugin-for-microsoft-azure:v1.10.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] \ @@ -505,7 +504,7 @@ velero install \ --provider azure \ --service-account-name velero \ --pod-labels azure.workload.identity/use=true \ - --plugins velero/velero-plugin-for-microsoft-azure:v1.9.0 \ + --plugins velero/velero-plugin-for-microsoft-azure:v1.10.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] \ @@ -522,7 +521,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.9.0 \ + --plugins velero/velero-plugin-for-microsoft-azure:v1.10.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] \ @@ -554,7 +553,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.9.0 \ + --plugins velero/velero-plugin-for-microsoft-azure:v1.10.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] \ diff --git a/changelogs/CHANGELOG-1.10.0.md b/changelogs/CHANGELOG-1.10.0.md new file mode 100644 index 0000000..e454be7 --- /dev/null +++ b/changelogs/CHANGELOG-1.10.0.md @@ -0,0 +1,4 @@ +## All changes + +- Add tips for incremental snapshot (#228, @anshulahuja98) +- Add instructions to enable the certificate-based authentication (#235, @ywk253100)