The Kubernetes API server secure port should be enabled
이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Description
The secure port should not be disabled. The secure port is used to serve https with authentication and authorization. If you disable it, no https traffic is served and all traffic is served unencrypted.
Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml
on the master node, and either remove the --secure-port
parameter or set it to a different (non-zero) desired port. For example, --secure-port=6443
which is also the default value.