From 03d02ccdd62241c5e3f5e842d9ef05180ee50d7a Mon Sep 17 00:00:00 2001 From: Ali Yazdani Date: Fri, 11 Oct 2019 12:56:22 +0200 Subject: [PATCH] Create readme.md Adding Kubernetes file --- Kubernetes/readme.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Kubernetes/readme.md diff --git a/Kubernetes/readme.md b/Kubernetes/readme.md new file mode 100644 index 0000000..8ab713b --- /dev/null +++ b/Kubernetes/readme.md @@ -0,0 +1,33 @@ +Kubernetes is an open-source container-orchestration system for automating application deployment, scaling, and management. It was originally designed by Google, and is now maintained by the Cloud Native Computing Foundation. + +### API addresses that you should know *(External network visibility)* +--- +#### - cAdvisor +``` +curl -k https://:4194 +``` +#### - Insecure API server +``` +curl -k https://:8080 +``` +#### - Secure API Server +``` +curl -k https://:(8|6)443/swaggerapi +curl -k https://:(8|6)443/healthz +curl -k https://:(8|6)443/api/v1 +``` +#### - etcd API +``` +curl -k https://:2379 +curl -k https://:2379/version +``` +#### - Kubelet API +``` +curl -k https://:10250 +curl -k https://:10250/metrics +curl -k https://:10250/pods +``` +#### - kubelet (Read only) +``` +curl -k https://:10255 +```