We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7072080 commit ec1e282Copy full SHA for ec1e282
renku/core/session/session.py
@@ -179,9 +179,11 @@ def session_start(
179
if image_name is None:
180
tag = project_context.repository.head.commit.hexsha[:7]
181
repo_host = get_image_repository_host()
182
- image_name = f"{project_name}:{tag}"
+ image_name = f"{project_name.lower()}:{tag}"
183
if repo_host:
184
image_name = f"{repo_host}/{image_name}"
185
+ if image_name.lower() != image_name:
186
+ raise errors.SessionStartError(f"Image name '{image_name}' cannot contain upper-case letters.")
187
188
force_build_image = provider_api.force_build_image(**kwargs)
189
0 commit comments