About persistent IP addresses for Pods


This page explains how you can achieve reliable communication by directly assigning one or more persistent (static) IP addresses to specific Pods within your Google Kubernetes Engine (GKE) clusters.

In certain cases, where you are running a custom Network Address Translation (NAT) solution, you might want a static persistent IP address for both outgoing and incoming connections, either when the NAT solution initiates the connection or when it receives it. You might also want to have control over the IP addresses allocated to the application for managing how it interacts with other systems or how it handles specific types of requests based on your business requirements.

By default, the Pod uses its interface IP addresses for egressing traffic. Interface IP addresses change when the Pod restarts or gets moved. To have more control over routing communication, you can configure persistent IP addresses manually for your Pods in GKE.

These IP addresses can be either external IP addresses to communicate over the internet or internal IP addresses to communicate within your Google Cloud network. You can either use Google-provided IP addresses or bring your own IP addresses (BYOIP).

By configuring persistent IP addresses for Pods in GKE, you can map application and business logic to allow specific Pods to send and receive traffic to or from any of the persistent IP addresses.

Terminology and concepts

This page uses the following concepts:

Gateway classes

Gateway classes Gateways, which manage your persistent IP address assignments, come in the following classes:

  • gke-persistent-regional-external-managed for external IP addresses
  • gke-persistent-regional-internal-managed for internal (Google Cloud-only) IP addresses

    Gateway classes work within specific regions. Gateway classes offer basic IP address management and are focused on Layer 3 (L3) network routing.

Gateway objects

Gateway objects serve as the central point for managing and configuring persistent IP addresses. Gateway objects in GKE manage a pool of persistent IP addresses. They list these addresses and define rules for how these IP addresses can be assigned to GKEIPRoute.

Listener

A Listener is a part of your GKE Gateway configuration that controls which Pods across Gateway namespaces can use the persistent IP addresses held by the Gateway. The Listener lets you customize access for flexibility and security. Each Listener needs a unique name and lets you filter access by namespace (all, label-based, or only the Gateway's namespace).

GKEIPRoute Object

The GKEIPRoute object is a custom resource which you configure to assign a persistent IP address to a specific Pod in your GKE cluster. You can use the status section of the GKEIPRoute object to monitor your persistent IP address setup, which provides key information through the following fields:

  • Pod

    The Pod field shows you the exact name of the Pod linked to the persistent IP addresses. A single Pod can use multiple persistent IP addresses.

  • Conditions

    The Conditions field informs whether your external IP address setup is working correctly and can also help diagnose issues if your configuration is not valid. There are four conditions:

    • Accepted: Denotes if the GKEIPRoute resource specification is valid. If your configuration has errors, the Accepted condition is False with a reason.
    • GCPReady: Denotes that Google Cloud has prepared all necessary resources. Errors during the Google Cloud resource provisioning process are reflected in the GCPReady condition's status.
    • DPV2Ready: Denotes the status of datapath programming, such as the datapath is ready and programmed to allow network connections on the configured persistent IP addresses.
    • Ready: Denotes that your persistent IP address setup is valid and functional. The Pods can be reached on the persistent IP address provided you have configured your application to use it. This is set to True when all the other three preceding conditions are also True.

Reaction Modes

Reaction Modes determine how the system behaves when the Pod linked to a persistent IP address undergoes changes, such as moving across nodes or when a newly-created matching Pod becomes available. You can use reaction modes to keep your persistent IP addresses usable even as your Pods change.

Reaction modes are one of:

  • ReadyCondition

    In ReadyCondition mode, the persistent IP address system prioritizes Pod health. The persistent IP address system only assigns IP addresses to Pods that match your specified labels and have passed Kubernetes health probes, signaling their Ready status as True. This mode is ideal for applications where it's crucial that the Pod receiving the persistent IP address is fully prepared to handle incoming and outgoing traffic.

  • Exists

    The Exists mode prioritizes the presence of a Pod. The persistent IP address attaches to a Pod if that Pod matches the labels in your configuration and has been scheduled onto a specific node in your cluster. This means the Pod exists and has a designated place to run. This mode is well-suited for scenarios where rapid assignment of the persistent IP address takes priority over strict readiness, or in environments like development and testing where immediate connectivity might be more important than full application health.

StatefulSets

StatefulSets are a type of Kubernetes workload designed for applications that need stable identifiers and persistent storage. Pods within a StatefulSet have predictable names (For example: my-app-0, my-app-1).

Deployments

Deployments are a type of Kubernetes workload for managing stateless applications where Pods are generally interchangeable. Pod names within Deployments aren't fully predictable.

Use cases

Persistent IP addresses for GKE Pods address several use cases for network and security service providers running network-related applications on GKE and GKE Enterprise.

Persistent IP addresses for GKE Pods address the following use cases:

  • Control over NAT: By assigning persistent IP addresses to Pods running network functions, you get granular control over the source IP addresses used for outbound traffic. This lets you to integrate your proprietary NAT logic.
  • Dedicated IP address pools: Dedicated IP addresses let you to match specific addresses to individual 5G Core Pods, ensuring compatibility with specialized vendor software.
  • Reliable Traffic Flows: Since return traffic needs to be routed back through the same network function, persistent IP addresses ensure that external systems recognize and respond to the correct Pod without breaks in communication.

Benefits

Persistent IP addresses for GKE Pods provide you the following benefits:

  • External Identity: If you give a Pod an external persistent IP address, external systems can consistently reach that Pod, even if it gets restarted or moved within the cluster. This is helpful for services that need a externally discoverable endpoint.
  • Reliable Communication: Applications that depend on other resources with specific IP addresses can reliably establish connections using persistent IP addresses. Persistent IP addresses are important for legacy systems or applications with hardcoded IP address dependencies.
  • Legacy migrations: Legacy migrations can assist in migrating applications that rely on having specific IP addresses during the transition process.
  • BYOIP: BYOIP lets you maintain control over specific IP address ranges you already own by using them within your GKE clusters.

What's next