From 41e003095093b5e2855088a2f7d933ba26340910 Mon Sep 17 00:00:00 2001 From: Carlos Santana Date: Sun, 28 Jan 2024 23:25:57 -0500 Subject: [PATCH] update argo workflows Signed-off-by: Carlos Santana --- argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh | 3 +++ .../iac/terraform/examples/eks/argo-workflows/variables.tf | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh b/argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh index cf53429c..2848a949 100755 --- a/argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh +++ b/argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh @@ -14,6 +14,9 @@ if [[ ! $(cat $TMPFILE) == *"No outputs found"* ]]; then source "$TMPFILE" kubectl delete -n argocd applicationset workloads kubectl delete -n argocd applicationset cluster-addons + kubectl delete -n argocd applicationset addons-argocd + kubectl delete -n argocd applicationset addons-argo-workflows + kubectl delete svc -n argocd argo-cd-argocd-server kubectl delete -n argocd applicationset addons-aws-argo-workflows-ingress kubectl delete -n argo-workflows ing --all fi diff --git a/argocd/iac/terraform/examples/eks/argo-workflows/variables.tf b/argocd/iac/terraform/examples/eks/argo-workflows/variables.tf index feb7c1de..8a4bfab5 100644 --- a/argocd/iac/terraform/examples/eks/argo-workflows/variables.tf +++ b/argocd/iac/terraform/examples/eks/argo-workflows/variables.tf @@ -6,6 +6,7 @@ variable "enable_ingress" { variable "domain_name" { description = "Route 53 domain name" type = string + default = "" } variable "vpc_cidr" { description = "VPC CIDR" @@ -20,7 +21,7 @@ variable "region" { variable "kubernetes_version" { description = "Kubernetes version" type = string - default = "1.24" + default = "1.29" } variable "addons" { description = "Kubernetes addons" @@ -32,7 +33,7 @@ variable "addons" { enable_argo_workflows = true # set to false if enable_aws_argo_workflows_ingress = true enable_aws_argo_workflows_ingress = false # set to true if enable_argo_workflows is false - enable_external_dns = true # set to true if enable_aws_argo_workflows_ingress = true + enable_external_dns = false # set to true if enable_aws_argo_workflows_ingress = true } } # Addons Git