Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Managed Service for Kubernetes
  • Comparing with other Yandex Cloud services
  • Getting started
    • Resource relationships
    • Release channels and updates
    • Updating node group OS
    • Encryption
    • Networking in Managed Service for Kubernetes
    • Network settings and cluster policies
    • Autoscaling
    • Audit policy
    • External cluster nodes
    • Quotas and limits
    • Recommendations on using Managed Service for Kubernetes
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • Requirements for connecting external nodes to a cluster
  • Responsibility
  • External node operation limitations
  1. Concepts
  2. External cluster nodes

External cluster nodes

Written by
Yandex Cloud
Improved by
Dmitry A.
Updated at November 27, 2025
  • Requirements for connecting external nodes to a cluster
  • Responsibility
  • External node operation limitations

Note

Connecting external nodes is at the Preview stage. You will not be charged for using them.

With Managed Service for Kubernetes, you can connect servers from outside Yandex Cloud as Kubernetes cluster nodes.

Requirements for connecting external nodes to a clusterRequirements for connecting external nodes to a cluster

There are certain requirements you should fulfill to connect external nodes to a Managed Service for Kubernetes:

  • L3 network connectivity between your servers' local network infrastructure and your Managed Service for Kubernetes cluster's cloud network. External nodes only connect to a cluster master via its Yandex Cloud cloud network internal IP address.

    You can establish a private dedicated connection between your local network infrastructure and Yandex Cloud:

    • Using Yandex Cloud Interconnect.
    • Manually, via a VPN, e.g., IPSec or WireGuard.
  • A Managed Service for Kubernetes cluster uses network tunneling.

  • Your external servers must have internet access.

  • External server OS: Ubuntu 24.04.

For information on connecting external nodes to a Managed Service for Kubernetes cluster, see Connecting external nodes to a cluster.

ResponsibilityResponsibility

For reliable operation of external nodes, you must ensure continuous operation of:

  • Your computing infrastructure, i.e., servers and their operating system.
    • We do not recommend using external servers for anything other than the cluster node functions.
  • Local network infrastructure of your servers.
  • Connection between your local network infrastructure and Yandex Cloud.

Yandex Cloud offers reliable private connections between your local network and cloud infrastructure by means of Cloud Interconnect. Alternatively, you can configure and maintain the quality of such a connection yourself using a VPN.

Yandex Cloud does not offer management services or guarantee the reliability of any computing or network infrastructure outside the Yandex Cloud data centers. You can take advantage of a managed infrastructure by using Managed Service for Kubernetes regular node groups.

External node operation limitationsExternal node operation limitations

When designing load balancing for nodes in a Managed Service for Kubernetes cluster, you have to consider the following aspects:

  • You cannot connect PersistentVolume objects based on Yandex Cloud disks to external nodes.
  • Services based on Yandex Cloud L3 load balancers, e.g., LoadBalancer, do not distribute traffic to these nodes.

You must deploy any loads requiring this feature on Managed Service for Kubernetes cluster nodes located in Yandex Cloud only. For this, use the node affinity settings:

...
  affinity:
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
        nodeSelectorTerms:
        - matchExpressions:
          - key: yandex.cloud/node-group-id # Kubernetes label for nodes located in Yandex Cloud.
            operator: Exists
...

You can manage traffic at L7 instead of doing it using L3 load balancers. To do this, install an Ingress controller in your Managed Service for Kubernetes cluster and use the Ingress resources.

Marketplace products Ingress controller and Gateway API based on Yandex Application Load Balancer do not support balancing to external nodes.

Use the Gwin controller or one of the alternative Ingress controllers for balancing to external nodes.

To use the Gwin controller for balancing to external nodes:

  • The Application Load Balancer L7 load balancer must have access to the external node address.

  • The external node address must be present in the node's status as a resource, for example:

    kubectl get no -o yaml example-cluster-node-1 | yq ".status.addresses"
    
    - address: 10.0.0.7
      type: InternalIP
    - address: 2001:db8::1
      type: InternalIP
    - address: example-cluster-node-1
      type: Hostname
    

Was the article helpful?

Previous
Audit policy
Next
Quotas and limits
© 2025 Direct Cursus Technology L.L.C.