-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Authentication markdown styles #10
- Loading branch information
1 parent
b22946a
commit 07e04e1
Showing
1 changed file
with
46 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,64 @@ | ||
### <전제> | ||
## 전제 | ||
|
||
- 위와 같은 모든 "유저 접근"은 kube-apiServer에 의해 관리됨 | ||
- 1. kubectl command | ||
```shell | ||
$> k create serviceaccount sa1 | ||
$> k get serviceaccount | ||
``` | ||
- 2. REST API | ||
```shell | ||
$> curl https://kube-server-ip:6443 | ||
``` | ||
|
||
1. kubectl command | ||
|
||
```shell | ||
$> k create serviceaccount sa1 | ||
$> k get serviceaccount | ||
``` | ||
|
||
2. REST API | ||
|
||
```shell | ||
$> curl https://kube-server-ip:6443 | ||
``` | ||
|
||
- 어떤 방식으로든 모든 요청은 kube-apiServer로 간다 | ||
- apiServer는... | ||
- 1. 요청을 authenticate(인증) | ||
- 2. authorize(인가, 승인) | ||
- 3. 요청을 처리함 | ||
|
||
### <Authentication methods> | ||
1. 요청을 authenticate(인증) | ||
2. authorize(인가, 승인) | ||
3. 요청을 처리함 | ||
|
||
- 인증 방법 | ||
## Authentication methods | ||
|
||
1. Static password files(w/ username) | ||
### 1. Static password files(w/ username) | ||
|
||
- csv 파일에 user/pw를 저장하는 방법 | ||
- `--basic-auth-file=user-details.csv`를 추가하는 두 가지 방법 | ||
- 1. kube-apiserver.service 파일에 추가(kube-apiserver 재시작 필요) | ||
- 2. /etc/kubernetes/manifests/kube-apiserver.yaml에 spec > containers > command 에 추가 | ||
- csv 파일에 user/pw를 저장하는 방법 | ||
- `--basic-auth-file=user-details.csv`를 추가하는 두 가지 방법 | ||
1. kube-apiserver.service 파일에 추가(kube-apiserver 재시작 필요) | ||
2. /etc/kubernetes/manifests/kube-apiserver.yaml에 spec > containers > command 에 추가 | ||
|
||
```c | ||
// User-details.csv | ||
Password | username | userID | ||
password123, user1, u0001 | ||
``` | ||
```c | ||
// User-details.csv | ||
Password | username | userID | ||
password123, user1, u0001 | ||
``` | ||
|
||
- 사용법 | ||
- 사용법 | ||
|
||
```shell | ||
$> curl -v -k https://localhost:6443/api/v1/pods -u “user1:password123" | ||
``` | ||
```shell | ||
$> curl -v -k https://localhost:6443/api/v1/pods -u “user1:password123" | ||
``` | ||
2. Static token file | ||
### 2. Static token file | ||
- 위와 같지만 `--token-auth-file=user-token-details.csv`을 추가하면 됨 | ||
- csv에서도 패스워드 대신, 토큰 값으로 대체 | ||
- 쉽지만 안전하지 않기 때문에 위의 두 개는 추천하지 않음 | ||
- Auth file을 넘기기 위해 volume mount가 필요 | ||
- 위와 같지만 `--token-auth-file=user-token-details.csv`을 추가하면 됨 | ||
- csv에서도 패스워드 대신, 토큰 값으로 대체 | ||
- 쉽지만 안전하지 않기 때문에 위의 두 개는 추천하지 않음 | ||
- Auth file을 넘기기 위해 volume mount가 필요 | ||
- 사용법 | ||
- 사용법 | ||
```shell | ||
$> curl -v -k https://localhost:6443/api/v1/pods --header "Authorization: Baearer Kp..." | ||
``` | ||
```shell | ||
$> curl -v -k https://localhost:6443/api/v1/pods --header "Authorization: Baearer Kp..." | ||
``` | ||
3. Certificates | ||
### 3. Certificates | ||
- 증명서를 이용하여 암호화하는 방법 | ||
- 증명서를 이용하여 암호화하는 방법 | ||
4. Third party authentication protocol(LDAP, Kerberos …) | ||
### 4. Third party authentication protocol(LDAP, Kerberos …) | ||
- 서드 파티 툴을 이용하여 인증 과정을 대신 처리하게 함 | ||
- 서드 파티 툴을 이용하여 인증 과정을 대신 처리하게 함 |