mirror of
https://github.com/vcscsvcscs/OCI-Kubernetes-cluster-with-traefik.git
synced 2025-08-15 23:39:06 +02:00
Add ArgoCD as an optional module
This commit is contained in:
30
oci-managed/argocd/variables.tf
Normal file
30
oci-managed/argocd/variables.tf
Normal file
@@ -0,0 +1,30 @@
|
||||
variable "compartment_ocid" {}
|
||||
variable "environment" {
|
||||
default = "prod"
|
||||
}
|
||||
variable "cluster_ocid" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
description = "Namespace to install argocd chart into"
|
||||
type = string
|
||||
default = "argocd"
|
||||
}
|
||||
|
||||
variable "my_domain" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "argocd_chart_version" {
|
||||
description = "Version of argocd chart to install"
|
||||
type = string
|
||||
default = "6.7.1" # See https://artifacthub.io/packages/helm/argo/argo-cd for latest version(s)
|
||||
}
|
||||
|
||||
# Helm chart deployment can sometimes take longer than the default 5 minutes
|
||||
variable "timeout_seconds" {
|
||||
type = number
|
||||
description = "Helm chart deployment can sometimes take longer than the default 5 minutes. Set a custom timeout here."
|
||||
default = 800 # 10 minutes
|
||||
}
|
Reference in New Issue
Block a user