Invalid kube-config file. No configuration found

2.5k Views Asked by At

I am new to kubectl and kserve. Tried to implement and create inference service using the below tutorial. https://www.kubeflow.org/docs/external-add-ons/kserve/first_isvc_kserve/

But while creating the InferenceService I am getting the below error. Can some one help me in this.

KServe = KServeClient()
KServe.create(isvc)
Error:
---------------------------------------------------------------------------
ConfigException                           Traceback (most recent call last)
<ipython-input-7-0b03661604ad> in <module>()
----> 1 KServe = KServeClient()
      2 KServe.create(isvc)

2 frames
/usr/local/lib/python3.7/dist-packages/kubernetes/config/kube_config.py in _get_kube_config_loader(filename, config_dict, persist_config, **kwargs)
    766         if kcfg.config is None:
    767             raise ConfigException(
--> 768                 'Invalid kube-config file. '
    769                 'No configuration found.')
    770         return KubeConfigLoader(

**ConfigException: Invalid kube-config file. No configuration found.**

0

There are 0 best solutions below