Skip to content

Commit

Permalink
Updating tests and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigobersa committed Feb 8, 2024
1 parent 8065395 commit de28d8a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/addons/bottlerocket.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ module "eks_blueprints_addons" {
}
```

You can also customize the Helm charts that deploys `bottlerocket_update_operator` and the `bottlerocket_update_operator_crds` via the following configuration:
You can also customize the Helm charts that deploys `bottlerocket_update_operator` and the `bottlerocket_shadow` via the following configuration:

```hcl
enable_bottlerocket_update_operator = true
bottlerocket_update_operator = {
name = "brupop"
name = "brupop-operator"
description = "A Helm chart for BRUPOP"
chart_version = "1.3.0"
namespace = "brupop"
Expand All @@ -110,7 +110,7 @@ bottlerocket_update_operator = {
}]
}
bottlerocket_update_operator_crds = {
bottlerocket_shadow = {
name = "brupop-crds"
description = "A Helm chart for BRUPOP CRDs"
chart_version = "1.0.0"
Expand Down
11 changes: 10 additions & 1 deletion tests/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,15 @@ module "eks_blueprints_addons" {
aws-guardduty-agent = {}
}



enable_aws_efs_csi_driver = true
enable_aws_fsx_csi_driver = true
enable_argocd = true
enable_argo_rollouts = true
enable_argo_workflows = true
enable_aws_cloudwatch_metrics = true
enable_aws_privateca_issuer = true
enable_cert_manager = true
enable_cluster_autoscaler = true
enable_secrets_store_csi_driver = true
enable_secrets_store_csi_driver_provider_aws = true
Expand All @@ -146,6 +147,12 @@ module "eks_blueprints_addons" {
enable_gatekeeper = true
enable_ingress_nginx = true

# Wait for all Cert-manager related resources to be ready
enable_cert_manager = true
cert_manager = {
wait = true
}

# Turn off mutation webhook for services to avoid ordering issue
enable_aws_load_balancer_controller = true
aws_load_balancer_controller = {
Expand Down Expand Up @@ -216,6 +223,8 @@ module "eks_blueprints_addons" {
}]
}

enable_bottlerocket_update_operator = true

# Pass in any number of Helm charts to be created for those that are not natively supported
helm_releases = {
prometheus-adapter = {
Expand Down

0 comments on commit de28d8a

Please sign in to comment.