-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement ingress-nginx helm release as module #160
Merged
Merged
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5f16001
Implement ingress-nginx helm release as module
vradicevicds 8242d25
terraform-docs: automated action
github-actions[bot] 339910c
terraform-docs: automated action
github-actions[bot] 9fb6af3
terraform-docs: automated action
github-actions[bot] 92d52bc
Simplify input variables
vradicevicds 5fef3b4
Address review comments
vradicevicds 8b49a7f
Increase terraform version in quality gate
vradicevicds 45471ae
terraform-docs: automated action
github-actions[bot] bfaed62
terraform-docs: automated action
github-actions[bot] 3b9da2c
terraform-docs: automated action
github-actions[bot] c321d7e
Add implicit depends on for ingress_nginx helm_release
vradicevicds 8603b0e
Add changelog and migration instructions
vradicevicds bfb49f4
Update .terraform.lock.hcl
vradicevicds File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module "k8s_eks_addons" { | ||
source = "./modules/k8s_eks_addons" | ||
|
||
ingress_nginx_config = merge(var.ingress_nginx_config, { subnets_ids = local.public_subnets }) | ||
|
||
depends_on = [module.eks.eks_cluster_arn] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
resource "kubernetes_namespace_v1" "ingress_nginx" { | ||
count = var.ingress_nginx_config.enable ? 1 : 0 | ||
|
||
metadata { | ||
name = "nginx" | ||
} | ||
} | ||
|
||
resource "helm_release" "ingress_nginx" { | ||
count = var.ingress_nginx_config.enable ? 1 : 0 | ||
|
||
namespace = kubernetes_namespace_v1.ingress_nginx[0].metadata[0].name | ||
name = "ingress-nginx" | ||
chart = "ingress-nginx" | ||
repository = var.ingress_nginx_config.helm_repository | ||
version = var.ingress_nginx_config.helm_version | ||
description = "The NGINX HelmChart Ingress Controller deployment configuration" | ||
dependency_update = true | ||
values = [ | ||
templatefile("${path.module}/templates/nginx_values.yaml", { | ||
public_subnets = join(", ", var.ingress_nginx_config.subnets_ids) | ||
}), | ||
var.ingress_nginx_config.chart_values | ||
] | ||
timeout = 1200 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
variable "ingress_nginx_config" { | ||
description = "Ingress Nginx configuration" | ||
type = object({ | ||
enable = bool | ||
helm_repository = string | ||
helm_version = string | ||
chart_values = string | ||
subnets_ids = list(string) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
terraform { | ||
required_version = ">= 1.3.0" | ||
|
||
required_providers { | ||
kubernetes = { | ||
source = "hashicorp/kubernetes" | ||
version = ">= 2.10" | ||
} | ||
|
||
helm = { | ||
source = "hashicorp/helm" | ||
version = ">= 2.4.1" | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
terraform { | ||
required_version = ">= 1.2.0" | ||
required_version = ">= 1.3.0" | ||
|
||
required_providers { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
terraform { | ||
required_version = ">= 1.1.7" | ||
required_version = ">= 1.3.0" | ||
|
||
required_providers { | ||
aws = { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should keep the provider versions
"kubernetes" version = ">= 1.6.1"
vsversion = ">= 2.10"
on the same version, but that is a task for another story.