Merge pull request #271 from truecharts/Ornias1993-patch-7
Delete HP2.patch
This commit is contained in:
commit
4169dc43c6
@ -1,13 +0,0 @@
|
|||||||
diff --git plugins/kubernetes_linux/backup.py plugins/kubernetes_linux/backup.py
|
|
||||||
index d8a48d45f89..365cd1718b4 100644
|
|
||||||
--- plugins/kubernetes_linux/backup.py
|
|
||||||
+++ plugins/kubernetes_linux/backup.py
|
|
||||||
@@ -61,7 +61,8 @@ def backup_chart_releases(self, job, backup_name):
|
|
||||||
['metadata.namespace', '=', chart_release['namespace']]
|
|
||||||
]
|
|
||||||
)
|
|
||||||
- for secret in sorted(secrets, key=lambda d: d['metadata']['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')):
|
|
||||||
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))
|
|
Loading…
Reference in New Issue
Block a user