Merge pull request #4064 from kahirokunn/main

fixes for CVE-2021-3121 and CVE-2021-3580
This commit is contained in:
Daniel Jiang
2021-08-30 18:33:18 +08:00
committed by GitHub
3 changed files with 4 additions and 3 deletions

View File

@@ -0,0 +1 @@
Updated the version of velero/velero-plugin-for-aws version from v1.2.0 to v1.2.1

View File

@@ -72,7 +72,7 @@ These instructions start the Velero server and a Minio instance that is accessib
```
velero install \
--provider aws \
--plugins velero/velero-plugin-for-aws:v1.2.0 \
--plugins velero/velero-plugin-for-aws:v1.2.1 \
--bucket velero \
--secret-file ./credentials-velero \
--use-volume-snapshots=false \

View File

@@ -41,11 +41,11 @@ func getProviderPlugins(providerName string) []string {
// TODO: make plugin images configurable
switch providerName {
case "aws":
return []string{"velero/velero-plugin-for-aws:v1.2.0"}
return []string{"velero/velero-plugin-for-aws:v1.2.1"}
case "azure":
return []string{"velero/velero-plugin-for-microsoft-azure:v1.2.0"}
case "vsphere":
return []string{"velero/velero-plugin-for-aws:v1.2.0", "vsphereveleroplugin/velero-plugin-for-vsphere:v1.1.1"}
return []string{"velero/velero-plugin-for-aws:v1.2.1", "vsphereveleroplugin/velero-plugin-for-vsphere:v1.1.1"}
default:
return []string{""}
}