Skip to content

Commit

Permalink
nitpicking: align Makefile help text (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBrigitte authored Aug 23, 2024
1 parent 720674a commit 2a3675d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile.custom.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ SHELL:=/bin/bash -O globstar

dashboards = helm/dashboards/dashboards/**/*.json helm/dashboards/charts/**/*.json

install-tools: ## Install dependencies tools
install-tools: ## Install dependencies tools
./scripts/install-tools.sh

update-alertmanager-mixin: ## Update Alertmanager mixin dashboards
update-alertmanager-mixin: ## Update Alertmanager mixin dashboards
./scripts/update-monitoring-mixin-dashboards.sh

update-alloy-mixin: install-tools ## Update Alloy mixin dashboards
update-alloy-mixin: install-tools ## Update Alloy mixin dashboards
./alloy/update-alloy-mixin.sh

update-kubernetes-mixin: ## Update Kubernetes mixin dashboards
update-kubernetes-mixin: ## Update Kubernetes mixin dashboards
./scripts/sync-kube-mixin.sh

update-mimir-mixin: install-tools ## Update Mimir mixin dashboards
update-mimir-mixin: install-tools ## Update Mimir mixin dashboards
./mimir/update.sh

update-mixin: update-alertmanager-mixin update-alloy-mixin update-kubernetes-mixin update-mimir-mixin ## Update all mixins dashboards
update-mixin: update-alertmanager-mixin update-alloy-mixin update-kubernetes-mixin update-mimir-mixin ## Update all mixins dashboards

lint-dashboards: install-tools ## Run dashboard-linter for all dashboards in the helm/dashboards directory
lint-dashboards: install-tools ## Run dashboard-linter for all dashboards in the helm/dashboards directory
@for file in $(dashboards); do \
echo "------ Linting $$file"; \
dashboard-linter lint -c linter/config.yaml $$file; \
Expand Down

0 comments on commit 2a3675d

Please sign in to comment.