Where is kube-apiserver located

后端 未结 3 1304
深忆病人
深忆病人 2020-12-05 05:08

Base question: When I try to use kube-apiserver on my master node, I get command not found error. How I can install/configure kube-apiserver? Any link to example will help.<

3条回答
  •  执念已碎
    2020-12-05 05:47

    To make the storage class "example-nfs" default, you need to run the below command:

    kubectl patch storageclass example-nfs -p '{"metadata": 
      {"annotations": {"storageclass.kubernetes.io/is-default-class": "true"}}}'
    

提交回复
热议问题