File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
argocd/iac/terraform/examples/eks/argo-workflows Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff 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
1922fi
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ variable "enable_ingress" {
66variable "domain_name" {
77 description = " Route 53 domain name"
88 type = string
9+ default = " "
910}
1011variable "vpc_cidr" {
1112 description = " VPC CIDR"
@@ -20,7 +21,7 @@ variable "region" {
2021variable "kubernetes_version" {
2122 description = " Kubernetes version"
2223 type = string
23- default = " 1.24 "
24+ default = " 1.29 "
2425}
2526variable "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
You can’t perform that action at this time.
0 commit comments