Open
Description
When I use the 3.2.3 image, I encountered this error when spawning a kernel:
[I 2024-05-31 08:44:21.065 EnterpriseGatewayApp] Created kernel namespace: jovyan-b4ca16d6-eb9f-431e-abef-e4f5ac9b344d
[W 2024-05-31 08:44:21.074 EnterpriseGatewayApp] Deleted kernel namespace: jovyan-b4ca16d6-eb9f-431e-abef-e4f5ac9b344d
[E 2024-05-31 08:44:21.074 EnterpriseGatewayApp] Error occurred creating role binding for namespace 'jovyan-b4ca16d6-eb9f-431e-abef-e4f5ac9b344d': module 'kubernetes.client' has no attribute 'V1Subject'
using the server image: jupyter/base-notebook:python-3.9.7
Activity
welcome commentedon May 31, 2024
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋
Welcome to the Jupyter community! 🎉
merqri commentedon Jun 3, 2024
@fm2022aa
Greetings! I ran into the same problem today. The fastest way to solve it for me was to build a new container with minimal changes:
As you can see the problem is in the line.
enterprise_gateway/enterprise_gateway/services/processproxies/k8s.py
Line 352 in d01e84a
It uses V1Subject, which is not supported by kubernetes library version 29
I have also created a pull request that should solve this problem - #1384
fm2022aa commentedon Jun 3, 2024
Thank you for your reply
powerstar13 commentedon Mar 11, 2025
I hope this issue gets fixed soon. Just change V1Subject to RbacV1Subject.