Class: Google::Apis::GkehubV1::PolicyControllerPolicyControllerDeploymentConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::PolicyControllerPolicyControllerDeploymentConfig
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb 
Overview
Deployment-specific configuration.
Instance Attribute Summary collapse
- 
  
    
      #container_resources  ⇒ Google::Apis::GkehubV1::PolicyControllerResourceRequirements 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ResourceRequirements describes the compute resource requirements.
 - 
  
    
      #pod_affinity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pod affinity configuration.
 - 
  
    
      #pod_anti_affinity  ⇒ Boolean 
    
    
      (also: #pod_anti_affinity?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pod anti-affinity enablement.
 - 
  
    
      #pod_tolerations  ⇒ Array<Google::Apis::GkehubV1::PolicyControllerToleration> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pod tolerations of node taints.
 - 
  
    
      #replica_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pod replica count.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PolicyControllerPolicyControllerDeploymentConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PolicyControllerPolicyControllerDeploymentConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ PolicyControllerPolicyControllerDeploymentConfig
Returns a new instance of PolicyControllerPolicyControllerDeploymentConfig.
      4908 4909 4910  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4908 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#container_resources ⇒ Google::Apis::GkehubV1::PolicyControllerResourceRequirements
ResourceRequirements describes the compute resource requirements.
Corresponds to the JSON property containerResources
      4885 4886 4887  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4885 def container_resources @container_resources end  | 
  
#pod_affinity ⇒ String
Pod affinity configuration.
Corresponds to the JSON property podAffinity
      4890 4891 4892  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4890 def pod_affinity @pod_affinity end  | 
  
#pod_anti_affinity ⇒ Boolean Also known as: pod_anti_affinity?
Pod anti-affinity enablement. Deprecated: use pod_affinity instead.
Corresponds to the JSON property podAntiAffinity
      4895 4896 4897  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4895 def pod_anti_affinity @pod_anti_affinity end  | 
  
#pod_tolerations ⇒ Array<Google::Apis::GkehubV1::PolicyControllerToleration>
Pod tolerations of node taints.
Corresponds to the JSON property podTolerations
      4901 4902 4903  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4901 def pod_tolerations @pod_tolerations end  | 
  
#replica_count ⇒ Fixnum
Pod replica count.
Corresponds to the JSON property replicaCount
      4906 4907 4908  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4906 def replica_count @replica_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4913 4914 4915 4916 4917 4918 4919  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4913 def update!(**args) @container_resources = args[:container_resources] if args.key?(:container_resources) @pod_affinity = args[:pod_affinity] if args.key?(:pod_affinity) @pod_anti_affinity = args[:pod_anti_affinity] if args.key?(:pod_anti_affinity) @pod_tolerations = args[:pod_tolerations] if args.key?(:pod_tolerations) @replica_count = args[:replica_count] if args.key?(:replica_count) end  |