Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions argocd/iac/terraform/examples/eks/argo-workflows/destroy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions argocd/iac/terraform/examples/eks/argo-workflows/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ variable "enable_ingress" {
variable "domain_name" {
description = "Route 53 domain name"
type = string
default = ""
}
variable "vpc_cidr" {
description = "VPC CIDR"
Expand All @@ -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"
Expand All @@ -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
Expand Down