Skip to content

Commit 54a1627

Browse files
authored
update argo workflows (#49)
Signed-off-by: Carlos Santana <csantana23@gmail.com>
1 parent 8d5d6b8 commit 54a1627

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ if [[ ! $(cat $TMPFILE) == *"No outputs found"* ]]; then
1414
source "$TMPFILE"
1515
kubectl delete -n argocd applicationset workloads
1616
kubectl delete -n argocd applicationset cluster-addons
17+
kubectl delete -n argocd applicationset addons-argocd
18+
kubectl delete -n argocd applicationset addons-argo-workflows
19+
kubectl delete svc -n argocd argo-cd-argocd-server
1720
kubectl delete -n argocd applicationset addons-aws-argo-workflows-ingress
1821
kubectl delete -n argo-workflows ing --all
1922
fi

argocd/iac/terraform/examples/eks/argo-workflows/variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ variable "enable_ingress" {
66
variable "domain_name" {
77
description = "Route 53 domain name"
88
type = string
9+
default = ""
910
}
1011
variable "vpc_cidr" {
1112
description = "VPC CIDR"
@@ -20,7 +21,7 @@ variable "region" {
2021
variable "kubernetes_version" {
2122
description = "Kubernetes version"
2223
type = string
23-
default = "1.24"
24+
default = "1.29"
2425
}
2526
variable "addons" {
2627
description = "Kubernetes addons"
@@ -32,7 +33,7 @@ variable "addons" {
3233
enable_argo_workflows = true # set to false if enable_aws_argo_workflows_ingress = true
3334
enable_aws_argo_workflows_ingress = false # set to true if enable_argo_workflows is false
3435

35-
enable_external_dns = true # set to true if enable_aws_argo_workflows_ingress = true
36+
enable_external_dns = false # set to true if enable_aws_argo_workflows_ingress = true
3637
}
3738
}
3839
# Addons Git

0 commit comments

Comments
 (0)