Create HP2.patch

This commit is contained in:
Kjeld Schouten-Lebbing 2022-12-26 21:35:14 +01:00 committed by GitHub
parent aad2bfc040
commit 0065ad60d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
hotpatch/2212/HP2.patch Normal file
View File

@ -0,0 +1,13 @@
diff --git plugins/kubernetes_linux/backup.py plugins/kubernetes_linux/backup.py
index 365cd1718b4..1046a64c2a5 100644
--- plugins/kubernetes_linux/backup.py
+++ plugins/kubernetes_linux/backup.py
@@ -62,7 +62,7 @@ def backup_chart_releases(self, job, backup_name):
]
)
# We ignore this keeping in line with helm behaviour where the secret malformed is ignored by helm
- for secret in sorted(secrets, key=lambda d: d['metadata']['name'] and d.get('data')):
+ for secret in sorted(filter(lambda d: d.get('data'), secrets), key=lambda d: d['metadata']['name']):
with open(os.path.join(secrets_dir, secret['metadata']['name']), 'w') as f:
f.write(self.middleware.call_sync('k8s.secret.export_to_yaml_internal', secret))