Skip to content

Commit

Permalink
fix(falco-talon): helm typo
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Lamirault <[email protected]>
  • Loading branch information
nlamirault committed Jul 9, 2024
1 parent cad182a commit fba0cce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ helm-lint-custom: guard-CHART ## Lint Helm chart

.PHONY: helm-lint-docker
helm-lint-docker: guard-CHART ## Lint Helm chart
@docker run -it --rm --name ct --volume $$(pwd):/data quay.io/helmpack/chart-testing sh -c "cd /data; ct lint --config .github/ct.yaml"
@docker run -it --rm -v ${HOME}:/root/ -v ${PWD}:/work -w /work --net host quay.io/helmpack/chart-testing ct lint --charts=charts/falco-talon --config .github/ct.yaml

.PHONY: helm-install
helm-install: guard-CHART guard-RELEASE ## Install a Helm chart
Expand Down
16 changes: 8 additions & 8 deletions charts/falco-talon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,21 +120,21 @@ config:
# listenPort: 2803

# these notifiers will be enabled for all rules
defaultNotifiers:
# - slack
defaultNotifiers:
# - slack
- k8sevents

# reload if the rules file changes (default: true)
watchRules: true
watchRules: true

# list of locale rules files to use, they will be concatenated into a single config map
rulesFiles:
rulesFiles:
- rules/rules.yaml
- rules/rules_override.yaml

deduplication:
# enable the leader election for cluster mode
leaderElection: true
leaderElection: true
# duration in seconds for the deduplication time window
timeWindowSeconds: 5

Expand Down Expand Up @@ -177,16 +177,16 @@ config:
# if not specified, default region from provider credential chain will be used
region: ""
# if not specified, default access_key from provider credential chain will be used
accesKey: ""
accesKey: ""
# if not specified, default secret_key from provider credential chain will be used
secretKey: ""
secretKey: ""

minio:
endpoint: ""
accessKy: ""
secretKey: ""
useSsl: false

# -- serviceMonitor holds the configuration for the ServiceMonitor CRD.
serviceMonitor:
# -- enable the deployment of a Service Monitor for the Prometheus Operator.
Expand Down

0 comments on commit fba0cce

Please sign in to comment.