Skip to content

Commit

Permalink
Feat: 🚀 Added certification-manager example in complete folder
Browse files Browse the repository at this point in the history
  • Loading branch information
VishwajitNagulkar committed Oct 4, 2023
1 parent eff7ae4 commit ffdfe15
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
21 changes: 21 additions & 0 deletions _examples/complete/config/override-certification-manager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Node affinity for particular node in which labels key is "Infra-Services" and value is "true"

affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "eks.amazonaws.com/nodegroup"
operator: In
values:
- "critical"

resources:
limits:
cpu: 200m
memory: 250Mi
requests:
cpu: 50m
memory: 150Mi

installCRDs: true
3 changes: 3 additions & 0 deletions _examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ module "addons" {
fluent_bit = true
velero = true
keda = true
certification_manager = true

# -- Addons with mandatory variable
istio_ingress = true
Expand Down Expand Up @@ -195,6 +196,7 @@ module "addons" {
new_relic_helm_config = { values = [file("./config/override-new-relic.yaml")] }
kube_state_metrics_helm_config = { values = [file("./config/override-kube-state-matrics.yaml")] }
keda_helm_config = { values = [file("./config/keda/override-keda.yaml")] }
certification_manager_helm_config = { values = [file("./config/override-certification-manager.yaml")] }

# -- Override Helm Release attributes
metrics_server_extra_configs = var.metrics_server_extra_configs
Expand All @@ -214,6 +216,7 @@ module "addons" {
new_relic_extra_configs = var.new_relic_extra_configs
kube_state_metrics_extra_configs = var.kube_state_metrics_extra_configs
keda_extra_configs = var.keda_extra_configs
certification_manager_extra_configs = var.certification_manager_extra_configs

external_secrets_extra_configs = {
irsa_assume_role_policy = jsonencode({
Expand Down

0 comments on commit ffdfe15

Please sign in to comment.