반응형
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
- seldon core
- Model Serving
- kubernetes operator
- tekton
- knative
- 오퍼레이터
- CANARY
- nginx ingress
- CI/CD
- operator
- Argo
- Kopf
- Kubernetes
- Litmus
- gitea
- Continuous Deployment
- keda
- Kubernetes 인증
- Kubeflow
- opentelemetry
- argocd
- argo rollout
- Pulumi
- mlops
- 카오스 엔지니어링
- gitops
- opensearch
- serving
- blue/green
- MLflow
Archives
- Today
- Total
목록restful apiserver (1)
Kubernetes 이야기
kubernetes apiserver 를 통해 Cluster 정보 조회
인증 설정방법 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