Skip to content

Commit

Permalink
feat: added override values file in complete folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanveer143s committed Jan 29, 2024
1 parent 0a81ecb commit 943924a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions _examples/complete/config/override-kubeclarity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

kubeclarity:
resources:
limits:
memory: "500Mi"
cpu: "200m"
requests:
memory: "200Mi"
cpu: "100m"

podAnnotations:
co.elastic.logs/enabled: "true"


# Be careful when using ingress. As there is no authentication on Kubeclarity yet, your instance may be accessible.
# Make sure the ingress remains internal if you decide to enable it.
service:
type: LoadBalancer
port: 80
annotations: {}
# service.beta.kubernetes.io/aws-load-balancer-scheme: "internet-facing"
# service.beta.kubernetes.io/aws-load-balancer-name: "kubeclarity"
1 change: 1 addition & 0 deletions _examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ module "addons" {
certification_manager_helm_config = { values = [file("./config/override-certification-manager.yaml")] }
keda_helm_config = { values = [file("./config/keda/override-keda.yaml")] }
kubeclarity_helm_config = { values = [file("./config/kubeclarity/override-kubeclarity.yaml")] }


# -- Override Helm Release attributes
cluster_autoscaler_extra_configs = var.cluster_autoscaler_extra_configs
Expand Down

0 comments on commit 943924a

Please sign in to comment.