Class: Google::Apis::GkeonpremV1::VmwareNodeConfig
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareNodeConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkeonprem_v1/classes.rb,
lib/google/apis/gkeonprem_v1/representations.rb,
lib/google/apis/gkeonprem_v1/representations.rb
Overview
Parameters that describe the configuration of all nodes within a given node pool.
Instance Attribute Summary collapse
-
#boot_disk_size_gb ⇒ Fixnum
VMware disk size to be used during creation.
-
#cpus ⇒ Fixnum
The number of CPUs for each node in the node pool.
-
#enable_load_balancer ⇒ Boolean
(also: #enable_load_balancer?)
Allow node pool traffic to be load balanced.
-
#image ⇒ String
The OS image name in vCenter, only valid when using Windows.
-
#image_type ⇒ String
Required.
-
#labels ⇒ Hash<String,String>
The map of Kubernetes labels (key/value pairs) to be applied to each node.
-
#memory_mb ⇒ Fixnum
The megabytes of memory for each node in the node pool.
-
#replicas ⇒ Fixnum
The number of nodes in the node pool.
-
#taints ⇒ Array<Google::Apis::GkeonpremV1::NodeTaint>
The initial taints assigned to nodes of this node pool.
-
#vsphere_config ⇒ Google::Apis::GkeonpremV1::VmwareVsphereConfig
VmwareVsphereConfig represents configuration for the VMware VCenter for node pool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareNodeConfig
constructor
A new instance of VmwareNodeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VmwareNodeConfig
Returns a new instance of VmwareNodeConfig.
5150 5151 5152 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boot_disk_size_gb ⇒ Fixnum
VMware disk size to be used during creation.
Corresponds to the JSON property bootDiskSizeGb
5093 5094 5095 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5093 def boot_disk_size_gb @boot_disk_size_gb end |
#cpus ⇒ Fixnum
The number of CPUs for each node in the node pool.
Corresponds to the JSON property cpus
5098 5099 5100 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5098 def cpus @cpus end |
#enable_load_balancer ⇒ Boolean Also known as: enable_load_balancer?
Allow node pool traffic to be load balanced. Only works for clusters with
MetalLB load balancers.
Corresponds to the JSON property enableLoadBalancer
5104 5105 5106 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5104 def enable_load_balancer @enable_load_balancer end |
#image ⇒ String
The OS image name in vCenter, only valid when using Windows.
Corresponds to the JSON property image
5110 5111 5112 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5110 def image @image end |
#image_type ⇒ String
Required. The OS image to be used for each node in a node pool. Currently cos
, ubuntu, ubuntu_containerd and windows are supported.
Corresponds to the JSON property imageType
5116 5117 5118 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5116 def image_type @image_type end |
#labels ⇒ Hash<String,String>
The map of Kubernetes labels (key/value pairs) to be applied to each node.
These will added in addition to any default label(s) that Kubernetes may apply
to the node. In case of conflict in label keys, the applied set may differ
depending on the Kubernetes version -- it's best to assume the behavior is
undefined and conflicts should be avoided. For more information, including
usage and the valid values, see: https://kubernetes.io/docs/concepts/overview/
working-with-objects/labels/
Corresponds to the JSON property labels
5127 5128 5129 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5127 def labels @labels end |
#memory_mb ⇒ Fixnum
The megabytes of memory for each node in the node pool.
Corresponds to the JSON property memoryMb
5132 5133 5134 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5132 def memory_mb @memory_mb end |
#replicas ⇒ Fixnum
The number of nodes in the node pool.
Corresponds to the JSON property replicas
5137 5138 5139 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5137 def replicas @replicas end |
#taints ⇒ Array<Google::Apis::GkeonpremV1::NodeTaint>
The initial taints assigned to nodes of this node pool.
Corresponds to the JSON property taints
5142 5143 5144 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5142 def taints @taints end |
#vsphere_config ⇒ Google::Apis::GkeonpremV1::VmwareVsphereConfig
VmwareVsphereConfig represents configuration for the VMware VCenter for node
pool.
Corresponds to the JSON property vsphereConfig
5148 5149 5150 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5148 def vsphere_config @vsphere_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 5155 def update!(**args) @boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb) @cpus = args[:cpus] if args.key?(:cpus) @enable_load_balancer = args[:enable_load_balancer] if args.key?(:enable_load_balancer) @image = args[:image] if args.key?(:image) @image_type = args[:image_type] if args.key?(:image_type) @labels = args[:labels] if args.key?(:labels) @memory_mb = args[:memory_mb] if args.key?(:memory_mb) @replicas = args[:replicas] if args.key?(:replicas) @taints = args[:taints] if args.key?(:taints) @vsphere_config = args[:vsphere_config] if args.key?(:vsphere_config) end |