본문 바로가기
cloud/k8s(문제풀이)

[k8s] Service Networking

by mozi2 2022. 8. 3.
반응형

1. What network range are the nodes in the cluster part of?

k get nodes -o wide 

A) 10.0.81.0/24

 

2. What is the range of IP addresses configured for PODs on this cluster?

ip a 

A) 10.50.0.0/16

 

3. What is the IP Range configured for the services within the cluster? 

: 다시 확인 

 

A) 10.96.0.0/12

 

4. How many kube-proxy pods are deployed in this cluster?

k get pods -n kube-system

A) 2 

 

5. What type of proxy is the kube-proxy configured to use?

k get pods -n kube-system
k logs -n kube-system kube-proxy-6lmfx

A) iptables

 

6.How does this Kubernetes cluster ensure that a kube-proxy pod runs on all nodes in the cluster?

Inspect the kube-proxy pods and try to identify how they are deployed

 

A) using daemonset

 
728x90
반응형

'cloud > k8s(문제풀이)' 카테고리의 다른 글

[따배쿠CKA -1] cka - ETCD Backup Restore  (0) 2022.08.03
[k8s] CoreDNS in kubeernetes  (0) 2022.08.03
[cka]Network- Networking weave  (0) 2022.08.03
[k8s] Network-weave  (0) 2022.08.01
[K8S]Network-CNI Weave  (0) 2022.08.01