ServiceIPSpecPatch#

pydantic model phalanx.models.kubernetes.ServiceIPSpecPatch#

A patch to a Service spec containing an IP address.

Parameters:

data (Any)

Show JSON schema
{
   "title": "ServiceIPSpecPatch",
   "description": "A patch to a Service spec containing an IP address.",
   "type": "object",
   "properties": {
      "load_balancer_ip": {
         "format": "ipv4",
         "title": "Load Balancer Ip",
         "type": "string"
      }
   },
   "required": [
      "load_balancer_ip"
   ]
}

Config:
  • validate_by_name: bool = True

Fields:
field load_balancer_ip: IPv4Address [Required]#

The IP address to assign to a Service in this patch.