반응형
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 |
Tags
- Kopf
- Kubeflow
- Model Serving
- MLflow
- serving
- Litmus
- eBPF
- mlops
- blue/green
- 카오스 엔지니어링
- CI/CD
- 오퍼레이터
- seldon core
- opensearch
- operator
- Continuous Deployment
- gitops
- Argo
- opentelemetry
- keda
- Kubernetes 인증
- tekton
- nginx ingress
- Pulumi
- knative
- CANARY
- Kubernetes
- argocd
- xdp
- kubernetes operator
Archives
- Today
- Total
목록access kubernetes 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