Relationships between resources in Managed Service for Kubernetes
Kubernetes is an environment for managing containerized applications. Kubernetes provides mechanisms for interacting with clusters that can automate tasks like deploying, scaling, and managing applications in containers.
The main entity in the service is the Kubernetes cluster.
Kubernetes cluster
Kubernetes clusters consist of a master and one or more node groups. The master is responsible for managing the Kubernetes cluster. Containerized user applications are run on nodes.
The service fully controls the master and monitors the status and health of node groups. Users can manage nodes directly and configure Kubernetes clusters using the Yandex Cloud management console and the Managed Service for Kubernetes CLI and API.
Warning
Groups of Kubernetes nodes require internet access for downloading images and components.
Internet access can be provided in the following ways:
- By assigning each node in the group a public IP address.
- Configuring a VM as a NAT instance.
- Enabling egress NAT.
Kubernetes clusters in the Yandex Cloud infrastructure use the following resources:
Resource | Amount | Comment |
---|---|---|
Subnet | 2 | Kubernetes reserves ranges of IP addresses to use for pods and services. |
Public IP | N | The number N includes: * One public IP address for the NAT instance. * A public IP address assigned to each node in the group if you use one-to-one NAT technology. |
Master
Masters are components that manage Kubernetes clusters.
They run Kubernetes control processes that include the Kubernetes API server, scheduler, and main resource controllers. The master lifecycle is managed by the service when creating or deleting a Kubernetes cluster. The master is responsible for global solutions that are run on all Kubernetes cluster nodes. These include scheduling workloads (such as containerized applications), managing the lifecycle of workloads, and scaling.
There are two types of masters that differ by their location in availability zones:
-
Zonal: A master created in a subnet in one availability zone.
-
Regional: A master created and distributed in three subnets in each availability zone. If a zone becomes unavailable, the regional master remains functional.
Warning
The internal IP address of a regional master is only available within a single Yandex Virtual Private Cloud cloud network.
Node group
A node group is a group of VMs in a Kubernetes cluster that have the same configuration and run the user's containers.
Configuration
When creating a group of nodes, you can configure the following VM parameters:
-
VM type.
-
Type and number of cores (vCPU).
-
Amount of memory (RAM) and disk space.
-
Kernel parameters.
- Safe kernel parameters are isolated between pods.
- Unsafe parameters affect the operation of the pods and the node as a whole. In Managed Service for Kubernetes, you can't change unsafe kernel parameters unless their names have been explicitly specified when creating a node group.
For more information about kernel parameters, see the Kubernetes documentation.
You can create groups with different configurations in a Kubernetes cluster and place them in different availability zones.
For Managed Service for Kubernetes, the following container runtime environments are available:
- The
Docker
platform is selected by default when you create a group of nodes. - The
containerd
platform may be selected when you create or update a group of nodes with Kubernetes version 1.19 or higher.
Connecting to group nodes
You can connect to nodes in a group via SSH. Learn more in Connecting to a node via SSH.
Taints and tolerations policies
Taints are special policies applied to nodes in the group. Using taint policies, you can prohibit some pods from running on certain nodes. For example, you can specify that rendering pods can only be run on nodes with GPUs.
Advantages of taint policies:
- The policies are preserved when a node is restarted or replaced.
- The policies are applied automatically to nodes added to the group.
- The policies are automatically applied to new nodes during node group scaling.
You can only apply a taint policy to a node group when creating it.
Warning
Do not confuse Kubernetes node labels (node_labels
) managed by Managed Service for Kubernetes and taint policies.
Every taint policy consists of three parts:
<key> = <value>:<effect>
A list of available taint effects:
NO_SCHEDULE
: Prohibit running new pods on group nodes (doesn't affect running pods).PREFER_NO_SCHEDULE
: Avoid running pods on group nodes if there are available resources for this in other groups.NO_EXECUTE
: Evict pods from nodes in this group to other groups, and prohibit running new pods.
Tolerations are exceptions from taint policies. Tolerations allow you to permit certain pods to run on nodes even if a taint policy prevents it.
For example, if the key1=value1:NoSchedule
taint policy is set for group nodes, you can place pods on this node using tolerations:
apiVersion: v1
kind: Pod
...
spec:
...
tolerations:
- key: "key1"
operator: "Equal"
value: "value1"
effect: "NoSchedule"
Note
For system pods, tolerations permitting them to run on all available nodes are automatically set.
For more information about taint policies and tolerations, see the Kubernetes documentation.
Pod
A pod is a request to run one or more containers on a group node. In a Kubernetes cluster, each pod has a unique IP address so that applications do not conflict when using ports.
Containers are described in pods via JSON or YAML objects.
IP masquerade for pods
If a pod needs access to resources outside the cluster, its IP address will be replaced by the IP address of the node the pod is running on. For this purpose, the cluster uses IP masquerading.
By default, IP masquerade is enabled for the entire range of pod IP addresses.
To implement IP masquerading, the ip-masq-agent
pod is deployed on each cluster node. The settings for this pod are stored in a ConfigMap object called ip-masq-agent
. If you need to disable pod IP masquerading, for example, to access the pods over a VPN or Yandex Cloud Interconnect, specify the desired IP ranges in the data.config.nonMasqueradeCIDRs
parameter:
...
data:
config: |+
nonMasqueradeCIDRs:
- <CIDR of pod IP addresses to skip masquerading>
...
Service
A service is an abstraction that provides network load balancing functions. Traffic rules are configured for a group of pods united by a set of labels.
By default, a service is only available within a specific Kubernetes cluster, but it can be public and receive requests from outside the Kubernetes cluster.
Namespace
A namespace is an abstraction that logically isolates Kubernetes cluster resources and distributes quotas to them. This is useful for isolating resources of different teams and projects in a single Kubernetes cluster.
Service accounts
Managed Service for Kubernetes clusters use two types of service accounts:
-
Cloud service accounts
These accounts exist at the level of an individual folder in the cloud and can be used both by Managed Service for Kubernetes and other services.
For more information, see Access management in Managed Service for Kubernetes and Service accounts.
-
Kubernetes Service accounts
These accounts exist and run only at a level of an individual Managed Service for Kubernetes cluster. Kubernetes uses them for:
- To authenticate cluster API calls from applications deployed in the cluster.
- To configure access for these applications.
A number of Kubernetes service accounts are automatically created in the
kube-system
namespace when deploying a Managed Service for Kubernetes cluster.Kubernetes creates a token for each of these accounts. This token is used for authentication within the Kubernetes cluster that the account belongs to.
For more information, see the Kubernetes documentation.
Warning
Don't confuse cloud service accounts and Kubernetes service accounts.
In the service documentation, service account refers to a regular cloud service account unless otherwise specified.
Node labels
Node labels, node_labels
are a mechanism for grouping nodes together in Kubernetes. You can use node labels to manage pod distribution across the nodes of a cluster. For more information, see the Kubernetes documentation.
Warning
Do not confuse cloud node group labels (labels
) with Kubernetes node labels (node_labels
) managed by Managed Service for Kubernetes.
We recommend managing all node labels via the Managed Service for Kubernetes API method, because by default, when updating or changing a node group some of the nodes are recreated with different names and some of the old ones are deleted. That is why labels added via the Kubernetes API can be lost. Conversely, using the Kubernetes API to delete labels created via the Managed Service for Kubernetes API has no effect since such labels will be restored.
Node labels can only be set when creating a node group. Each object can be assigned a set of node labels in the form of a key:value
pair. Each key must be unique to an object.
Node label keys can consist of two parts: an optional prefix and a name separated by a /
.
A prefix is an optional part of a key. Prefix requirements:
- It must be a DNS subdomain: a series of DNS tags separated by dots
.
. - The length can be up to 253 characters.
- The last character must be followed by a
/
.
A name is a required part of a key. Naming requirements:
- The length can be up to 63 characters.
- May contain lowercase Latin letters, numbers, hyphens, underscores, and periods.
- The first and the last characters must be a letter or number.
For managing node labels, see Managing Kubernetes cluster node labels.