-
Notifications
You must be signed in to change notification settings - Fork 239
Description
Description
Whenever I start kernel based on kubernetes I'm getting this error on version 3.2.3:
Error Starting Kernel
HTTP 500: Internal Server Error (Error from Gateway: [Error occurred creating role binding for namespace 'guest-fab3e59b-edbb-4e1d-912e-087b1798425b': module 'kubernetes.client' has no attribute 'V1Subject'] Error occurred creating role binding for namespace 'guest-fab3e59b-edbb-4e1d-912e-087b1798425b': module 'kubernetes.client' has no attribute 'V1Subject'. Ensure gateway url is valid and the Gateway instance is running.)
Reproduce
values.yaml:
service:
type: "LoadBalancer"
# Master public IP on which to expose EG.
k8sMasterPublicIP: '<redacted, private ip like 10.x.x.x>'
ports:
- name: "http"
port: 8888
targetPort: 8888
- name: "http-response"
port: 8877
targetPort: 8877
ingress:
enabled: false
kernel:
shareGatewayNamespace: false
allowedKernels:
- r_kubernetes
- python_kubernetes
- python_tf_kubernetes
- python_tf_gpu_kubernetes
- scala_kubernetes
- spark_r_kubernetes
- spark_python_kubernetes
- spark_scala_kubernetes
- spark_python_operator
- python3
defaultKernelName: python_kubernetes
kip:
enabled: true
serviceAccountName: 'kernel-image-puller-sa'
criSocket: /run/containerd/containerd.sockhelm upgrade --install enterprise-gateway https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.2.3/jupyter_enterprise_gateway_helm-3.2.3.tar.gz --namespace enterprise-gateway -f ~/jupyter/gateway/values-balancer.yaml
kubectl get pods -n enterprise-gateway:

Try to run:
`curl -X POST -i 'http://<redacted_private_ip>:8888/api/kernels' --data '{ "name": "spark_python_kubernetes", "env": { "KERNEL_USERNAME": "jovyan" }}'`Response:
{"reason": "Error occurred creating role binding for namespace 'jovyan-99878812-28c5-49ad-8cbc-cb81713e7ba3': module 'kubernetes.client' has no attribute 'V1Subject'", "message": ""}Enterprise gateway logs:
kubectl logs -n enterprise-gateway enterprise-gateway-cfbb54797-7dph8
[D 2024-04-02 23:17:01.296 EnterpriseGatewayApp] RemoteMappingKernelManager.start_kernel: spark_python_kubernetes, kernel_username: jovyan
[D 2024-04-02 23:17:01.298 EnterpriseGatewayApp] Instantiating kernel 'Spark - Python (Kubernetes Mode)' with process proxy: enterprise_gateway.services.processproxies.k8s.KubernetesProcessProxy
[D 2024-04-02 23:17:01.299 EnterpriseGatewayApp] Starting kernel (async): ['/usr/local/share/jupyter/kernels/spark_python_kubernetes/bin/run.sh', '--RemoteProcessProxy.kernel-id', '<redacted>', '--RemoteProcessProxy.port-range', '0..0', '--RemoteProcessProxy.response-address', '<redacted>:8877', '--RemoteProcessProxy.public-key', '<redacted>', '--RemoteProcessProxy.spark-context-initialization-mode', 'lazy']
[D 2024-04-02 23:17:01.299 EnterpriseGatewayApp] Launching kernel: 'Spark - Python (Kubernetes Mode)' with command: ['/usr/local/share/jupyter/kernels/spark_python_kubernetes/bin/run.sh', '--RemoteProcessProxy.kernel-id', '<redacted>', '--RemoteProcessProxy.port-range', '0..0', '--RemoteProcessProxy.response-address', '<redacted>:8877', '--RemoteProcessProxy.public-key', '<redacted>', '--RemoteProcessProxy.spark-context-initialization-mode', 'lazy']
[I 2024-04-02 23:17:01.336 EnterpriseGatewayApp] Created kernel namespace: jovyan-99878812-28c5-49ad-8cbc-cb81713e7ba3
[W 2024-04-02 23:17:01.367 EnterpriseGatewayApp] Deleted kernel namespace: jovyan-99878812-28c5-49ad-8cbc-cb81713e7ba3
[E 2024-04-02 23:17:01.367 EnterpriseGatewayApp] Error occurred creating role binding for namespace 'jovyan-99878812-28c5-49ad-8cbc-cb81713e7ba3': module 'kubernetes.client' has no attribute 'V1Subject'
[E 240402 23:17:01 web:2271] 500 POST /api/kernels (<redacted>) 83.95msExpected behavior
Kernel starts
Context
JEG 3.2.3 on K3s v1.28.5