반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- Model Serving
- Pulumi
- opentelemetry
- Kopf
- seldon core
- operator
- blue/green
- Litmus
- knative
- Kubernetes 인증
- Kubeflow
- kubernetes operator
- CANARY
- opensearch
- Argo
- eBPF
- tekton
- Continuous Deployment
- mlops
- CI/CD
- keda
- xdp
- gitops
- nginx ingress
- 카오스 엔지니어링
- Kubernetes
- MLflow
- argocd
- 오퍼레이터
- serving
Archives
- Today
- Total
목록restful apiserver (1)
Kubernetes 이야기

인증 설정방법 0) 접근하는 API 서버 설정 KUBE_SERVER=$(kubectl config view -o jsonpath='{.clusters[0].cluster.server}') 1) x.509 인증 방식으로 apiserver 접근 시 호출방법 curl --cert --key --cacert \ $KUBE_SERVER/api/v1/pods 2) token 정보를 활용하여 apiserver 접근 시 호출방법 curl --insecure --header "Authorization: Bearer $KUBE_TOKEN" $KUBE_SERVER/api/v1/pods API 사용예제 - 모든 pod list 호출방법 curl -k --cert 111.cert --key 111.key --cacert 111..
Kubernetes/일반
2023. 12. 25. 23:43