Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 23, 2024
1 parent 99aad6d commit 07edbca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 17 deletions.
2 changes: 1 addition & 1 deletion copy_images.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ locals {
enabled = true
dest_path = null
name = "kubectl"
source_image = "gavinbunney/kubectl"
source_image = "bitnami/kubectl"
source_registry = "docker.io"
source_tag = var.kubectl_image_tag
tag = var.kubectl_image_tag
Expand Down
12 changes: 0 additions & 12 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,6 @@ output "rwx_storage_class" {
value = kubernetes_storage_class.efs-sc.metadata[0].name
}

################################################################################
# IRSA Roles created
################################################################################
# output "cluster_autoscaler_irsa_role" {
# description = "The arn/name/unique_id of the irsa role for the cluster autoscaler addon"
# value = {
# arn = module.cluster_autoscaler_irsa_role.iam_role_arn
# name = module.cluster_autoscaler_irsa_role.iam_role_name
# unique_id = module.cluster_autoscaler_irsa_role.iam_role_unique_id
# }
# }

################################################################################
# Details about kubectl image
################################################################################
Expand Down
9 changes: 5 additions & 4 deletions requirements.tf
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
terraform {
required_version = ">= 0.13"

required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.14.0"
version = ">= 5.14.0"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.11.0"
version = ">= 2.11.0"
}
kubectl = {
source = "gavinbunney/kubectl"
version = "~> 1.14.0"
version = ">= 1.14.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.23.0"
version = ">= 2.23.0"
}

}
Expand Down

0 comments on commit 07edbca

Please sign in to comment.