Skip to content

Error: module 'kubernetes.client' has no attribute 'V1Subject' #1382

Open
@fm2022aa

Description

@fm2022aa

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

welcome commented on May 31, 2024

@welcome

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.
welcome
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! 🎉

changed the title module 'kubernetes.client' has no attribute 'V1Subject' Error: module 'kubernetes.client' has no attribute 'V1Subject' on May 31, 2024
merqri

merqri commented on Jun 3, 2024

@merqri

@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:

FROM elyra/enterprise-gateway:3.2.3

USER root

RUN sed -i 's/V1Subject/RbacV1Subject/g' /opt/conda/lib/python3.10/site-packages/enterprise_gateway/services/processproxies/k8s.py

USER jovyan

As you can see the problem is in the line.

binding_subjects = client.V1Subject(

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

fm2022aa commented on Jun 3, 2024

@fm2022aa
Author

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:

Thank you for your reply

powerstar13

powerstar13 commented on Mar 11, 2025

@powerstar13

I hope this issue gets fixed soon. Just change V1Subject to RbacV1Subject.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      Error: module 'kubernetes.client' has no attribute 'V1Subject' · Issue #1382 · jupyter-server/enterprise_gateway