Skip to content

Kube-apiserver

Kubernetes API 서버.

HTTPS Endpoint

참고로 HTTP는 안되고 HTTPS로 연결해야 한다. 포트는 6443 이다.

curl -k https://localhost:6443/

대략 다음과 같이 출력된다:

{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {},
  "status": "Failure",
  "message": "Unauthorized",
  "reason": "Unauthorized",
  "code": 401
}

See also

Favorite site