terraform-kubestack icon indicating copy to clipboard operation
terraform-kubestack copied to clipboard

Kubestack is a framework for Kubernetes platform engineering teams to define the entire cloud native stack in one Terraform code base and continuously evolve the platform safely through GitOps.

Results 27 terraform-kubestack issues
Sort by recently updated
recently updated
newest added

# Problem We are recreating our cluster to enable the Private Node Pools, the issue seems to be that because we are recreating the cluster, the Kustomize Provider is trying...

bug

My plans fail with a bunch of lines like: ``` Error: Get "https://4BEF2107D872F8E1B7749B06522FF05D.yl4.us-east-2.eks.amazonaws.com/api?timeout=32s": getting credentials: exec: executable aws failed with exit code 254 ``` When I inspect the debug log...

Adding node_labels to the default node pool forces a destroy and recreate plan. ``` # module.aks_zero.module.cluster.azurerm_kubernetes_cluster.current must be replaced -/+ resource "azurerm_kubernetes_cluster" "current" { [...] ~ default_node_pool { - availability_zones...

Hi, When provisioning the GKE infrastructure, it would be great to be able to pull images from the GCR that is within the same project as the GKE cluster. Currently,...

enhancement
good first issue
GKE

Hi, really liking Kubestack so far! :pray: It would be useful if the `kubestack/framework` image had a location where arbitrary scripts could be placed, which would then be executed at...

enhancement
good first issue

To enable cluster-autoscaler on EKS, you need the AmazonEC2ContainerServiceAutoscaleRole added to the worker nodes.

enhancement
EKS

The AWS Cluster Autoscaler needs to know the name of the cluster for auto discovery. Currently the recommended way of getting this information in the deployment is through secrets. Only...

enhancement
EKS

Instead of trial and error it would be good to have a section in the documentation with the minimum required roles

enhancement
EKS

Adds passing three new parameters: ``` launch_template_id launch_template_name launch_template_version ``` to according object in`aws_eks_node_group`: `launch_template`. Id and name are mutually exclusive, so only one of them should be set at...

User Story As EKS user I wanna enable IMDSv2 for my launch templates so that my EC2 instance running without IMDSv1 Full backgrund can be seen here: https://aws.amazon.com/blogs/security/get-the-full-benefits-of-imdsv2-and-disable-imdsv1-across-your-aws-infrastructure/ AC -...