Wesley Charles Blake

Results 24 comments of Wesley Charles Blake

@bryantbiggs Im having a similar issue but I get context deadline exceed when trying to install the cluster-autoscaler. ```console Error: Post "https://...eks.amazonaws.com/api/v1/namespaces/kube-system/serviceaccounts": context deadline exceeded with module.eks_blueprints_kubernetes_addons.module.cluster_autoscaler[0].module.helm_addon.module.irsa[0].kubernetes_service_account_v1.irsa[0] on .terraform/modules/eks_blueprints_kubernetes_addons/modules/irsa/main.tf line...

> @bryantbiggs Im having a similar issue but I get context deadline exceed when trying to install the cluster-autoscaler. > > ``` > Error: Post "https://...eks.amazonaws.com/api/v1/namespaces/kube-system/serviceaccounts": context deadline exceeded >...

@bryantbiggs actually still failing with the same. using the following providers: ``` provider "kubernetes" { host = module.eks_blueprints.eks_cluster_endpoint cluster_ca_certificate = base64decode(module.eks_blueprints.eks_cluster_certificate_authority_data) exec { api_version = "client.authentication.k8s.io/v1beta1" command = "aws" #...

@bryantbiggs fixed it by using datasources for the kuberentes provider: ``` data "aws_eks_cluster" "cluster" { name = module.eks_blueprints.eks_cluster_id } data "aws_eks_cluster_auth" "cluster" { name = module.eks_blueprints.eks_cluster_id } provider "helm" {...

https://registry.terraform.io/github/create Repo maintainers just need to publish it here. I'd gladly do it if I got access @bryantbiggs

Although one thing I did so we could manage this as a registry module, was just fork the repo to my own org, and publish that. For those who are...

I tried a bunch of different queries and got results, but this seems more accurate. Thanks @vpistis . I will play around with the queries some more and let you...

awesome thanks @artyomboyko , Including this: ``` - source_labels: [__meta_kubernetes_pod_node_name] action: replace target_label: nodename ``` To the prometheus `kubernetes-service-endpoints` config works like a charm as well. Thanks for this!