This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| network_stuff:kubernetes [2022/02/16 11:54] – jotasandoku | network_stuff:kubernetes [2023/11/02 14:38] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 13: | Line 13: | ||
| * [[https:// | * [[https:// | ||
| * This is the [[https:// | * This is the [[https:// | ||
| + | * **Cluster**: | ||
| * **Node**: just servers, connected to each other normally with (sdn) network | * **Node**: just servers, connected to each other normally with (sdn) network | ||
| * the devops guy deploys a network overlay on the above ^ normally with a single ' | * the devops guy deploys a network overlay on the above ^ normally with a single ' | ||
| * k8s install a ' | * k8s install a ' | ||
| * kproxy: using iptables | * kproxy: using iptables | ||
| - | * **Cluster** | + | * **Pod**: A pod runs a group of container that has common properties |
| - | * Cluster consists | + | |
| - | * **Pod**: Ephemeral application/services. It appears after the ' | + | |
| * what stays static among the ephemeral pod states: | * what stays static among the ephemeral pod states: | ||
| * service node port (nat) | * service node port (nat) | ||
| * service cluster ip (internal, from pod to pod) | * service cluster ip (internal, from pod to pod) | ||
| * service load balancer (external IP address, cluster exposed) | * service load balancer (external IP address, cluster exposed) | ||
| - | * **deployment | + | |
| + | |||
| + | \\ | ||
| + | |||
| + | Deployment-object | ||
| + | ' | ||
| + | \\ | ||
| + | |||
| + | A simple way of seeing this train is with: | ||
| + | ! in minikube | ||
| + | kubectl run mynode | ||
| + | kubectl expose | ||
| + | | ||