stale-tomato-37875
01/14/2025, 5:29 AMautoMode: {
enabled: true,
},
the pulumi up
failed with following errors
Diagnostics:
pulumi:pulumi:Stack (brainfish-universe-eks-au):
error: eks:index:Cluster resource 'brainfish-au' has a problem: grpc: the client connection is closing
aws:eks:Cluster (brainfish-au-eksCluster):
error: sdk-v2/provider2.go:515: sdk.helper_schema: compute_config.enabled, kubernetes_networking_config.elastic_load_balancing.enabled, and storage_config.block_storage.enabled must all be set to either true or false: provider=aws@6.66.1
error: diffing urn:pulumi:au::brainfish-universe-eks::eks:index:Cluster$aws:eks/cluster:Cluster::brainfish-au-eksCluster: 1 error occurred:
* compute_config.enabled, kubernetes_networking_config.elastic_load_balancing.enabled, and storage_config.block_storage.enabled must all be set to either true or false
Additionally, I'd love to learn more about the design thinking behind the @pulumi/eks NodeGroup. It utilizes an autoscaling group in the background and requires minimum and maximum node counts. I'm curious about when it actually scales up, as I haven't noticed any changes in the machine nodes within the autoscaling group created by pulumi/eks.quick-house-41860
01/14/2025, 9:57 AMenabled
to false. I opened an issue for this and will start looking into it: https://github.com/pulumi/pulumi-eks/issues/1585quick-house-41860
01/14/2025, 10:00 AMaws.autoscaling.Policy
resource.
But what's way better is hooking the ASGs directly into the kubernetes lifecycle and driving scaling decisions based on the resource requests in your cluster.quick-house-41860
01/14/2025, 10:00 AMquick-house-41860
01/14/2025, 10:01 AMstale-tomato-37875
01/14/2025, 10:11 AMquick-house-41860
01/14/2025, 10:13 AMstale-tomato-37875
01/14/2025, 10:18 AMquick-house-41860
01/14/2025, 10:21 AMquick-house-41860
01/14/2025, 10:22 AMstale-tomato-37875
01/14/2025, 10:25 AMquick-house-41860
01/14/2025, 10:28 AMquick-house-41860
01/14/2025, 10:28 AMstale-tomato-37875
01/14/2025, 10:30 AMbetter-kitchen-49894
01/14/2025, 2:57 PM