Skip to content

Commit

Permalink
Merge pull request #126 from nerc-project/fix-default-ns-labels
Browse files Browse the repository at this point in the history
fix default RHODS label to use strings
  • Loading branch information
jtriley authored Nov 27, 2023
2 parents 3ac55af + 19aa4a7 commit 50ae320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coldfront_plugin_cloud/openshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _create_project(self, project_name, project_id):
headers = {"Content-type": "application/json"}
annotations = {"cf_project_id": str(self.allocation.project_id),
"cf_pi": self.allocation.project.pi.username}
labels = {'opendatahub.io/dashboard': True}
labels = {'opendatahub.io/dashboard': "true"}

payload = {"displayName": project_name,
"annotations": annotations,
Expand Down

0 comments on commit 50ae320

Please sign in to comment.