Skip to content

Commit

Permalink
Fix user pod affinity
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Mar 27, 2023
1 parent eca1d4f commit c3be74f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def workspace_volume_is_legacy(workspace_id):
clean_username = "".join(c for c in app_user.username if c.isalnum())
labels = {
'workspace': str(workspace_id),
'username': clean_username
'username': clean_username,
'user': str(self.user.id),
}

appname = self.image.split('/')[-1].split(':')[0]
Expand Down

0 comments on commit c3be74f

Please sign in to comment.