Difference between revisions of "EOT"

From wikieduonline
Jump to navigation Jump to search
(Created page with " https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/examples/complete/main.tf self_managed_node_groups = { spot = { instance_type = "m5.larg...")
Tags: Mobile web edit, Mobile edit
 
Tags: Mobile web edit, Mobile edit
Line 10: Line 10:
 
         market_type = "spot"
 
         market_type = "spot"
 
       }
 
       }
 
+
 
       pre_bootstrap_user_data = <<-EOT
 
       pre_bootstrap_user_data = <<-EOT
 
         echo "foo"
 
         echo "foo"
 
         export FOO=bar
 
         export FOO=bar
 
       EOT
 
       EOT
 
+
       bootstrap_extra_args = "--kubelet-extra-args '--node-labels=node.kubernetes.io/lifecycle=spot'"
+
       [[bootstrap_extra_args]] = "--kubelet-extra-args '--node-labels=node.kubernetes.io/lifecycle=spot'"
 
+
 
       post_bootstrap_user_data = <<-EOT
 
       post_bootstrap_user_data = <<-EOT
 
         cd /tmp
 
         cd /tmp

Revision as of 14:59, 20 March 2023


https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/examples/complete/main.tf

 self_managed_node_groups = {
   spot = {
     instance_type = "m5.large"
     instance_market_options = {
       market_type = "spot"
     }

     pre_bootstrap_user_data = <<-EOT
       echo "foo"
       export FOO=bar
     EOT

     bootstrap_extra_args = "--kubelet-extra-args '--node-labels=node.kubernetes.io/lifecycle=spot'"

     post_bootstrap_user_data = <<-EOT
       cd /tmp
       sudo yum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm
       sudo systemctl enable amazon-ssm-agent
       sudo systemctl start amazon-ssm-agent
     EOT
   }
 }


EOF

Advertising: