Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m-alisafaee committed Jul 8, 2024
1 parent 382ca42 commit 21c29eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion renku_notebooks/api/schemas/cloud_storage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Schema for cloudstorage config."""

import json
from configparser import ConfigParser
from io import StringIO
from pathlib import Path
Expand Down Expand Up @@ -118,7 +119,7 @@ def get_manifest_patch(self, base_name: str, namespace: str, labels={}, annotati
"stringData": {
"remote": self.name or base_name,
"remotePath": self.source_path,
"secrets": self.secrets,
"secrets": json.dumps(self.secrets),
"configData": self.config_string(self.name or base_name),
},
},
Expand Down

0 comments on commit 21c29eb

Please sign in to comment.