-
K8S API Call 예제K8S 2022. 12. 14. 18:31
https://iximiuz.com/en/posts/kubernetes-api-call-simple-http-client/
How To Call Kubernetes API using Simple HTTP Client
There are plenty of reasons to call the Kubernetes API using a CLI or GUI HTTP client. This article will show you how to get the API server address, authenticate requests using certificates and Service Account tokens, and call the API using kubectl in the
iximiuz.com
test.yaml file을 post call로 보내고 싶을 때는 다음과 같이 사용한다. (참고로 kubectl proxy를 사용)
curl -X POST 127.0.0.1:8001/apis/apiextensions.k8s.io/v1/customresourcedefinitions \ -H "Content-Type: application/yaml" \ --data-binary @test.yaml
반응형'K8S' 카테고리의 다른 글
Kube-API 서버는 Cert-manager가 만든 인증서를 어떻게 이해할까? (0) 2022.12.22 K8S Operator indexer 사용해서 성능 높이기 (0) 2022.12.19 Operator-sdk 사용시 multiple controller 구조로 변경 (0) 2022.12.05 K8S에서 NFS 서버 없이 동적 프로비저닝 사용하기 (0) 2022.12.02 ArgoCD와 Keycloak OIDC 연동하기 (0) 2022.11.25