Skip to content

Commit

Permalink
undo changes to test-infra
Browse files Browse the repository at this point in the history
  • Loading branch information
dak1n1 committed Jan 21, 2021
1 parent 403e63b commit ee738a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kubernetes/test-infra/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = "9.9.9"
version = "1.13"
}
aws = {
source = "hashicorp/aws"
Expand Down
5 changes: 3 additions & 2 deletions kubernetes/test-infra/eks/node-config/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ data "aws_eks_cluster" "cluster" {
provider "kubernetes" {
host = var.cluster_endpoint
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
exec {
api_version = "client.authentication.k8s.io/v1alpha1"
Expand Down Expand Up @@ -195,11 +196,11 @@ resource "kubernetes_deployment" "aws-lb-controller" {
timeout_seconds = 10
}
resources {
limits = {
limits {
cpu = "200m"
memory = "500Mi"
}
requests = {
requests {
cpu = "100m"
memory = "200Mi"
}
Expand Down

0 comments on commit ee738a5

Please sign in to comment.