Class: Google::Apis::ContainerV1::AddonsConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AddonsConfig
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality.
Instance Attribute Summary collapse
-
#horizontal_pod_autoscaling ⇒ Google::Apis::ContainerV1::HorizontalPodAutoscaling
Configuration options for the horizontal pod autoscaling feature, which increases or decreases the number of replica pods a replication controller has based on the resource usage of the existing pods.
-
#http_load_balancing ⇒ Google::Apis::ContainerV1::HttpLoadBalancing
Configuration options for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddonsConfig
constructor
A new instance of AddonsConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AddonsConfig
Returns a new instance of AddonsConfig
1236 1237 1238 |
# File 'generated/google/apis/container_v1/classes.rb', line 1236 def initialize(**args) update!(**args) end |
Instance Attribute Details
#horizontal_pod_autoscaling ⇒ Google::Apis::ContainerV1::HorizontalPodAutoscaling
Configuration options for the horizontal pod autoscaling feature, which
increases or decreases the number of replica pods a replication controller
has based on the resource usage of the existing pods.
Corresponds to the JSON property horizontalPodAutoscaling
1228 1229 1230 |
# File 'generated/google/apis/container_v1/classes.rb', line 1228 def horizontal_pod_autoscaling @horizontal_pod_autoscaling end |
#http_load_balancing ⇒ Google::Apis::ContainerV1::HttpLoadBalancing
Configuration options for the HTTP (L7) load balancing controller addon,
which makes it easy to set up HTTP load balancers for services in a cluster.
Corresponds to the JSON property httpLoadBalancing
1234 1235 1236 |
# File 'generated/google/apis/container_v1/classes.rb', line 1234 def http_load_balancing @http_load_balancing end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1241 1242 1243 1244 |
# File 'generated/google/apis/container_v1/classes.rb', line 1241 def update!(**args) @horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling) @http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing) end |