Skip to content

Commit

Permalink
complete: v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
junior committed May 20, 2021
1 parent 5e20984 commit 82212a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deploy/complete/terraform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

2021-05-18 (v2.2.1)
2021-05-18 (v2.3.0)

- Support for flexible Load Balancer annotations on Ingress-Nginx
- Support for domain name (FQDN) for ingress
Expand Down
2 changes: 1 addition & 1 deletion deploy/complete/terraform/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.3.0
14 changes: 7 additions & 7 deletions deploy/complete/terraform/mushop-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,35 @@ variable "ingress_nginx_enabled" {
description = "Enable Ingress Nginx for Kubernetes Services (This option provision a Load Balancer)"
}
variable "ingress_load_balancer_shape" {
default = "flexible" # Flexible, 10Mbps, 100Mbps, 400Mbps or 8000Mps
default = "flexible" # Flexible, 10Mbps, 100Mbps, 400Mbps or 8000Mps
description = "Shape that will be included on the Ingress annotation for the OCI Load Balancer creation"
}
variable "ingress_load_balancer_shape_flex_min" {
default = "10"
default = "10"
description = "Enter the minimum size of the flexible shape."
}
variable "ingress_load_balancer_shape_flex_max" {
default = "100"
default = "100"
description = "Enter the maximum size of the flexible shape (Should be bigger than minimum size). The maximum service limit is set by your tenancy limits."
}
variable "ingress_hosts" {
default = ""
default = ""
description = "Enter a valid full qualified domain name (FQDN). You will need to map the domain name to the EXTERNAL-IP address on your DNS provider (DNS Registry type - A). If you have multiple domain names, include separated by comma. e.g.: mushop.example.com,catshop.com"
}
variable "cert_manager_enabled" {
default = true
description = "Enable x509 Certificate Management"
}
variable "ingress_tls" {
default = false
default = false
description = "If enabled, will generate SSL certificates to enable HTTPS for the ingress using the Certificate Issuer"
}
variable "ingress_cluster_issuer" {
default = "letsencrypt-prod"
default = "letsencrypt-prod"
description = "Certificate issuer type. Currently supports the free Let's Encrypt and Self-Signed. Only *letsencrypt-prod* generates valid certificates"
}
variable "ingress_email_issuer" {
default = "[email protected]"
default = "[email protected]"
description = "You must replace this email address with your own. The certificate provider will use this to contact you about expiring certificates, and issues related to your account."
}

Expand Down

0 comments on commit 82212a7

Please sign in to comment.