Move common-envs.mk and package.mk from scripts/ to hack/ directory. Update all Makefile includes to use new paths. Remove unused issue-flux-certificates.sh script. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
17 lines
599 B
Makefile
17 lines
599 B
Makefile
export NAME=monitoring-agents
|
|
export NAMESPACE=cozy-monitoring
|
|
|
|
include ../../../hack/package.mk
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
|
|
helm repo update prometheus-community
|
|
# Kube-state-metrics
|
|
helm pull prometheus-community/kube-state-metrics --untar --untardir charts
|
|
# Node-exporter
|
|
helm pull prometheus-community/prometheus-node-exporter --untar --untardir charts
|
|
# Fluent-bit
|
|
helm repo add fluent https://fluent.github.io/helm-charts
|
|
helm repo update fluent
|
|
helm pull fluent/fluent-bit --untar --untardir charts
|