You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kubeflow with multi tenancy is deployed in on-prem Kubernetes cluster. Everything is working as expected.
Now trying to do local development for frontend. Followed all instruction to build and run frontend by proxying node server to k8s. I started getting below error,
Invalid input error: Invalid resource references for experiment. ListExperiment requires filtering by namespace.
After making below changes, above error got resolved and started getting new error,
Under index.tsx
ReactDOM.render(
KFP_FLAGS.DEPLOYMENT === Deployments.KUBEFLOW ? (
<NamespaceContextProvider>{app}</NamespaceContextProvider>
) : (
// Uncomment the following for namespace switch during development.
<NamespaceContext.Provider value='kubeflow-sharath'>{app}</NamespaceContext.Provider>
// <NamespaceContext.Provider value={undefined}>{app}</NamespaceContext.Provider>
),
document.getElementById('root'),
);
New Error,
Internal error: Unauthenticated: Request header error: there is no user identity header.: Request header error: there is no user identity header
Can you please help me to start frontend application locally with multi-tenancy enabled?
Steps to reproduce
Expected result
Start frontend application locally for local development
Materials and Reference
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍.
The text was updated successfully, but these errors were encountered:
Environment
on-prem Kubernetes cluster - using manifest repo
Kubeflow with multi tenancy is deployed in on-prem Kubernetes cluster. Everything is working as expected.
Now trying to do local development for frontend. Followed all instruction to build and run frontend by proxying node server to k8s. I started getting below error,
Invalid input error: Invalid resource references for experiment. ListExperiment requires filtering by namespace.
After making below changes, above error got resolved and started getting new error,
Under
index.tsx
New Error,
Can you please help me to start frontend application locally with multi-tenancy enabled?
Steps to reproduce
Expected result
Start frontend application locally for local development
Materials and Reference
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍.
The text was updated successfully, but these errors were encountered: