Skip to content

Commit

Permalink
Merge pull request #6 from GlueOps/new-fix-branch
Browse files Browse the repository at this point in the history
fix label
  • Loading branch information
balajisa09 authored Feb 7, 2024
2 parents d880280 + 07dbfff commit 7447340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion restore/restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def restore_tls_secrets():
secret = k8s_client.V1Secret(
metadata=k8s_client.V1ObjectMeta(name=secret_dict['metadata']['name'],
namespace=secret_dict['metadata']['namespace'],
labels="createdBy: tls-restore"),
labels={"createdBy": "tls-restore"}),
data=secret_dict.get('data', {}),
type=secret_dict.get('type', None)
)
Expand Down

0 comments on commit 7447340

Please sign in to comment.