From. https://coffeewhale.com/kubernetes/authentication/http-auth/2020/05/03/auth02/
HTTP 프로토콜에서 제공하는 인증 방법 중 하나
HTTP Header에 인증정보를 포함
Http 인증이 적용된 서버에 인증없이 접근하면 401 에러코드
HTTP header에 인증 필드를 기입
Authorization: <type> <credentials>
type: 인증방식, k8s의 경우 Basic 또는 Bearer
credentials: 사용자 인증정보, id/passwor 또는 token
Basic type: id와 비밀번호를 base64 인코딩후 전송
Authorization: Basic BASE64($USER:$PASSWORD)
Bearer type: token
Authorization: Bearer hello-world-token