Lab 2.1.10: ClusterIPs unreachable from Master to Minion
Would there be any reason that my ClusterIPs are not reachable from the Master node to pods running on the Minion? I made sure my AWS Security Group has TCP port 80 open:
ubuntu@ip-xxx-xx-xx-xxx:~$ kubectl get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE basicservice ClusterIP 10.103.61.173 <none> 80/TCP 31m kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 56m ubuntu@ip-xxx-xx-xx-xxx:~$ curl http://10.103.61.173 ^C
I am able to reach the api server on the Master from the minion node.
ubuntu@ip-xxx-xx-xx-xxx:~$ curl --insecure https://10.96.0.1/api
{
"kind": "APIVersions",
"versions": [
"v1"
],
"serverAddressByClientCIDRs": [
{
"clientCIDR": "0.0.0.0/0",
"serverAddress": "xxx.xx.xx.xxx:6443"
}
]
}
and I am able to hit the pod from the minion:
ubuntu@ip-xxx-xx-xx-xxx:~$ curl http://10.103.61.173
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
I have tried re-creating the cluster several times, starting from scratch and I am stuck at this point.
Thanks.
-Jonathan
Comments
-
I am having the same issue
1 -
@jtronson
If you curl from master node any of the endpoints (instead of the ClusterIP), or from the minion to endpoints, what responses do you get?
I am assuming both master and minion are in the same SG?
Regardless where your pod is running (master or minion), curling the ClusterIP should produce the same result, since the service should be equally accessible from both nodes inside your cluster.
Have you tried opening the SG to all traffic, rather than individual ports?
Regards,
-Chris0 -
OK. Opening up the SG to "All Traffic" fixed the issue. So now I am just wondering what ports I was missing in the rule. Currently I have the following tcp ports opened:
22: ssh
80: http
443, 8443: https
5000: Registry
6443: K8s API Server
6666: Etcd
30000 - 32767: nodePorts
53 (UDP): kube dns
All ICMPThank you for the suggestion. At least now I can continue with the lesson!
-Jonathan
0 -
The list below seems to be incomplete, but a good start:
https://kubernetes.io/docs/setup/independent/install-kubeadm/And then there is this discussion:
https://stackoverflow.com/questions/39293441/needed-ports-for-kubernetes-cluster1 -
Hi @TITYKOUKI ,
If your master cannot reach the minion, you may be experiencing node-to-node networking issues. Try opening your SG to all ports, protocols, from all sources, so it does not restrict any other traffic. Another option would be to look at your VPC setup, if there is one.
Regards,
-Chris0 -
@serewicz said:
Hello,If you would like to find a list of the ports in you you may consider adding a log line to the iptables on both nodes. As with other parts of Kubernetes there is much change going on, and the documentation on _kubernetes.io _tends to lag behind and/or not be accurate. You can put a log action on both the output as well as in the input chains, and from that get an understanding of what that particular version of Kubernetes wants to use for ports.
Regards,
Hi @serewicz, could you please provide a bash snippet to "adding a log line to the iptables on both nodes" and how to use the log for troubleshooting?
I read some iptables documentation but it does not seems so easy for a network newbie
Thanks a lot0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 754 Linux Foundation IT Professional Programs
- 374 Cloud Engineer IT Professional Program
- 170 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 5 DevOps & GitOps IT Professional Program
- 100 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 2 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 5 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 2 Open Source Best Practice Training
- 2 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 794 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 89 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 112 Mobile Computing
- 20 Android
- 77 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 393 Off Topic
- 121 Introductions
- 182 Small Talk
- 29 Study Material
- 976 Programming and Development
- 310 Kernel Development
- 648 Software Development
- 990 Software
- 382 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)