Update changelog for v1.8.0 (#4530)

Signed-off-by: Daniel Jiang <jiangd@vmware.com>
pull/4535/head
Daniel Jiang 2022-01-14 22:20:53 +08:00 committed by GitHub
parent db466df5e5
commit 459365013c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
46 changed files with 92 additions and 58 deletions

View File

@ -0,0 +1,92 @@
## v1.8.0
### 2022-01-14
### Download
https://github.com/vmware-tanzu/velero/releases/tag/v1.8.0
### Container Image
`velero/velero:v1.8.0`
### Documentation
https://velero.io/docs/v1.8
### Upgrading
https://velero.io/docs/v1.8/upgrade-to-1.8/
### Highlights
#### The plugins to support handling volumes created by the AWS CSI driver
The new versions of plugins for AWS, Azure and GCP will be released with the support of snapshotting and restoring the persistent volumes provisioned by CSI driver via the APIs of the cloud providers. With this enhancement, users can backup and restore the persistent volumes on these could providers without using the CSI plugin, which will remain beta and the feature flag `EnableCSI` will be disabled by default.
For the version of the plugins and the CSI drivers they support respectively please see the table:
| Plugin | Version | CSI Driver |
| --- | ----------- | ---------- |
| velero-plugin-for-aws | v1.4.0 | ebs.csi.aws.com |
| velero-plugin-for-microsoft-azure | v1.4.0 | disk.csi.azure.com |
| velero-plugin-for-gcp | v1.4.0 | pd.csi.storage.gke.io |
#### Break change
Starting v1.8 velero will only support v1 CRD, therefore, it will only run on Kubernetes v1.16+
### All changes
* E2E test on ssr object with controller namespace mix-ups (#4521, @mqiu)
* Check whether the volume is provisioned by CSI driver or not by the annotation as well (#4513, @ywk253100)
* Initialize the labels field of `velero backup-location create` option to avoid #4484 (#4491, @ywk253100)
* Fix e2e 2500 namespaces scale test timeout problem (#4480, @mqiu)
* Add backup deletion e2e test (#4401, @danfengliu)
* Return the error when getting backup store in backup deletion controller (#4465, @reasonerjt)
* Ignore the provided port is already allocated error when restoring the LoadBalancer service (#4462, @ywk253100)
* Revert #4423 migrate backup sync controller to kubebuilder. (#4457, @jxun)
* Add rbac and annotation test cases (#4455, @mqiu)
* remove --crds-version in velero install command. (#4446, @jxun)
* Upgrade e2e test vsphere plugin (#4440, @mqiu)
* Fix e2e test failures for the inappropriate optimaze of velero install (#4438, @mqiu)
* Limit backup namespaces on test resource filtering cases (#4437, @mqiu)
* Bump up Go to 1.17 (#4431, @reasonerjt)
* Added `<backup name>`-itemsnapshots.json.gz to the backup format. This file exists
when item snapshots are taken and contains an array of volume.Itemsnapshots
containing the information about the snapshots. This will not be used unless
upload progress monitoring and item snapshots are enabled and an ItemSnapshot
plugin is used to take snapshots.
Also added DownloadTargetKindBackupItemSnapshots for retrieving the signed URL to download only the `<backup name>`-itemsnapshots.json.gz part of a backup for use by
`velero backup describe`. (#4429, @dsmithuchida)
* Migrate backup sync controller from code-generator to kubebuilder. (#4423, @jxun)
* Added UploadProgressFeature flag to enable Upload Progress Monitoring and Item
Snapshotters. (#4416, @dsmithuchida)
* Added BackupWithResolvers and RestoreWithResolvers calls. Will eventually replace Backup and Restore methods.
Adds ItemSnapshotters to Backup and Restore workflows. (#4410, @dsu)
* Build for darwin-arm64 (#4409, @epk)
* Add resource filtering test cases (#4404, @mqiu)
* Fix the issue that the backup cannot be deleted after the application uninstalled (#4398, @ywk253100)
* Add restoreactionitem plugin to handle admission webhook configurations (#4397, @reasonerjt)
* Keep the annotation "pv.kubernetes.io/provisioned-by" when restoring PVs (#4391, @ywk253100)
* Adjust structure of e2e test codes (#4386, @mqiu)
* feat: migrate velero controller from kubebuilder v2 to v3
From Velero v1.8, apiextesions.k8s.io/v1beta1 is no longer supported,
which means only CRD of apiextensions.k8s.io/v1 is supported,
and the supported Kubernetes version is updated to v1.16 and later. (#4382, @jxun)
* Delete backups and Restic repos associated with deleted BSL(s) (#4377, @codegold79)
* Add the key for GKE zone for AZ collection (#4376, @reasonerjt)
* Fix statefulsets volumeClaimTemplates storageClassName when use Changing PV/PVC Storage Classes (#4375, @Box-Cube)
* Fix snapshot e2e test issue of jsonpath (#4372, @danfengliu)
* Modify the timestamp in the name of a backup generated from schedule to use UTC. (#4353, @jxun)
* Read Availability zone from nodeAffinity requirements (#4350, @reasonerjt)
* Use factory.Namespace() to replace hardcoded velero namespace (#4346, @half-life666)
* Return the error if velero failed to detect S3 region for restic repo (#4343, @reasonerjt)
* Add init log option for velero controller-runtime manager. (#4341, @jxun)
* Ignore the `provided port is already allocated` error when restoring the `NodePort` service (#4336, @ywk253100)
* Fixed an issue with the `backup-location create` command where the BSL Credential field would be set to an invalid empty SecretKeySelector when no credential details were provided. (#4322, @zubron)
* fix buggy pager func (#4306, @alaypatel07)
* Don't create a backup immediately after creating a schedule (#4281, @ywk253100)
* Fix CVE-2020-29652 and CVE-2020-26160 (#4274, @ywk253100)
* Refine tag-release.sh to align with change in release process (#4185, @reasonerjt)
* Fix plugins incompatible issue in upgrade test (#4141, @danfengliu)
* Verify group before treating resource as cohabitating (#4126, @sseago)
* Added ItemSnapshotter plugin definition and plugin framework - addresses #3533.
Part of the Upload Progress enhancement (#3533) (#4077, @dsmithuchida)
* Add upgrade test in E2E test (#4058, @danfengliu)
* Handle namespace mapping for PVs without snapshots on restore (#3708, @sseago)

View File

@ -1 +0,0 @@
Handle namespace mapping for PVs without snapshots on restore

View File

@ -1 +0,0 @@
Add upgrade test in E2E test

View File

@ -1,2 +0,0 @@
Added ItemSnapshotter plugin definition and plugin framework - addresses #3533.
Part of the Upload Progress enhancement (#3533)

View File

@ -1 +0,0 @@
Verify group before treating resource as cohabitating

View File

@ -1 +0,0 @@
Fix plugins incompatible issue in upgrade test

View File

@ -1 +0,0 @@
Refine tag-release.sh to align with change in release process

View File

@ -1 +0,0 @@
Fix CVE-2020-29652 and CVE-2020-26160

View File

@ -1 +0,0 @@
Don't create a backup immediately after creating a schedule

View File

@ -1 +0,0 @@
fix buggy pager func

View File

@ -1 +0,0 @@
Fixed an issue with the `backup-location create` command where the BSL Credential field would be set to an invalid empty SecretKeySelector when no credential details were provided.

View File

@ -1 +0,0 @@
Ignore the `provided port is already allocated` error when restoring the `NodePort` service

View File

@ -1 +0,0 @@
Add init log option for velero controller-runtime manager.

View File

@ -1 +0,0 @@
Return the error if velero failed to detect S3 region for restic repo

View File

@ -1 +0,0 @@
Use factory.Namespace() to replace hardcoded velero namespace

View File

@ -1 +0,0 @@
Read Availability zone from nodeAffinity requirements

View File

@ -1 +0,0 @@
Modify the timestamp in the name of a backup generated from schedule to use UTC.

View File

@ -1 +0,0 @@
Fix snapshot e2e test issue of jsonpath

View File

@ -1 +0,0 @@
Fix statefulsets volumeClaimTemplates storageClassName when use Changing PV/PVC Storage Classes

View File

@ -1 +0,0 @@
Add the key for GKE zone for AZ collection

View File

@ -1 +0,0 @@
Delete backups and Restic repos associated with deleted BSL(s)

View File

@ -1,4 +0,0 @@
feat: migrate velero controller from kubebuilder v2 to v3
From Velero v1.8, apiextesions.k8s.io/v1beta1 is no longer supported,
which means only CRD of apiextensions.k8s.io/v1 is supported,
and the supported Kubernetes version is updated to v1.16 and later.

View File

@ -1 +0,0 @@
Adjust structure of e2e test codes

View File

@ -1 +0,0 @@
Keep the annotation "pv.kubernetes.io/provisioned-by" when restoring PVs

View File

@ -1 +0,0 @@
Add restoreactionitem plugin to handle admission webhook configurations

View File

@ -1 +0,0 @@
Fix the issue that the backup cannot be deleted after the application uninstalled

View File

@ -1 +0,0 @@
Add backup deletion e2e test

View File

@ -1 +0,0 @@
Add resource filtering test cases

View File

@ -1 +0,0 @@
Build for darwin-arm64

View File

@ -1,2 +0,0 @@
Added BackupWithResolvers and RestoreWithResolvers calls. Will eventually replace Backup and Restore methods.
Adds ItemSnapshotters to Backup and Restore workflows.

View File

@ -1,2 +0,0 @@
Added UploadProgressFeature flag to enable Upload Progress Monitoring and Item
Snapshotters.

View File

@ -1 +0,0 @@
Migrate backup sync controller from code-generator to kubebuilder.

View File

@ -1,8 +0,0 @@
Added `<backup name>`-itemsnapshots.json.gz to the backup format. This file exists
when item snapshots are taken and contains an array of volume.Itemsnapshots
containing the information about the snapshots. This will not be used unless
upload progress monitoring and item snapshots are enabled and an ItemSnapshot
plugin is used to take snapshots.
Also added DownloadTargetKindBackupItemSnapshots for retrieving the signed URL to download only the `<backup name>`-itemsnapshots.json.gz part of a backup for use by
`velero backup describe`.

View File

@ -1 +0,0 @@
Bump up Go to 1.17

View File

@ -1 +0,0 @@
Limit backup namespaces on test resource filtering cases

View File

@ -1 +0,0 @@
Fix e2e test failures for the inappropriate optimaze of velero install

View File

@ -1 +0,0 @@
Upgrade e2e test vsphere plugin

View File

@ -1 +0,0 @@
remove --crds-version in velero install command.

View File

@ -1 +0,0 @@
Add rbac and annotation test cases

View File

@ -1 +0,0 @@
Revert #4423 migrate backup sync controller to kubebuilder.

View File

@ -1 +0,0 @@
Ignore the provided port is already allocated error when restoring the LoadBalancer service

View File

@ -1 +0,0 @@
Return the error when getting backup store in backup deletion controller

View File

@ -1 +0,0 @@
Fix e2e 2500 namespaces scale test timeout problem

View File

@ -1 +0,0 @@
Initialize the labels field of `velero backup-location create` option to avoid #4484

View File

@ -1 +0,0 @@
Check whether the volume is provisioned by CSI driver or not by the annotation as well

View File

@ -1 +0,0 @@
E2E test on ssr object with controller namespace mix-ups