File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
kubernetes/test-infra/eks Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ terraform {
22 required_providers {
33 kubernetes = {
44 source = " hashicorp/kubernetes"
5- version = " 9.9.9 "
5+ version = " 1.13 "
66 }
77 aws = {
88 source = " hashicorp/aws"
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ data "aws_eks_cluster" "cluster" {
99provider "kubernetes" {
1010 host = var. cluster_endpoint
1111 token = data. aws_eks_cluster_auth . cluster . token
12+ load_config_file = false
1213 cluster_ca_certificate = base64decode (data. aws_eks_cluster . cluster . certificate_authority . 0 . data )
1314 exec {
1415 api_version = " client.authentication.k8s.io/v1alpha1"
@@ -195,11 +196,11 @@ resource "kubernetes_deployment" "aws-lb-controller" {
195196 timeout_seconds = 10
196197 }
197198 resources {
198- limits = {
199+ limits {
199200 cpu = " 200m"
200201 memory = " 500Mi"
201202 }
202- requests = {
203+ requests {
203204 cpu = " 100m"
204205 memory = " 200Mi"
205206 }
You can’t perform that action at this time.
0 commit comments