我想在 apiserver pod 中设置功能门参数。我该怎么做?我已经通过使用此处的解决方案对其进行了尝试:
apiVersion: kubeadm.k8s.io/v1alpha1
kind: MasterConfiguration
apiServerExtraArgs:
feature-gates: "RuntimeClass=true"
但它不起作用:
kubectl apply -f update_api_server.yaml
error: unable to recognize "update_api_server.yaml": no matches for kind "MasterConfiguration" in version "kubeadm.k8s.io/v1alpha1"
我正在使用 k8s v1.13.0。谢谢