Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.74 KB | None | 0 0
  1. // Networking contains cluster wide network settings
  2. type Networking struct {
  3.     // APIServerPort is the listen port on the host for the Kubernetes API Server
  4.     // Defaults to a random port on the host
  5.     APIServerPort int32 `json:"apiServerPort,omitempty"`
  6.     // APIServerAddress is the listen address on the host for the Kubernetes
  7.     // API Server. This should be an IP address.
  8.     //
  9.     // Defaults to 127.0.0.1
  10.     APIServerAddress string `json:"apiServerAddress,omitempty"`
  11.     // CNI plugin
  12.     CNI string `json:"cni,omitempty"`
  13.     // Range of IP addresses for the pod network
  14.     PodSubnet string `json:"podSubnet,omitempty"`
  15.     // Range of IP address for service VIPs
  16.     ServiceSubnet string `json:"serviceSubnet,omitempty"`
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement