mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced new HelmRelease configurations for cert-manager, monitoring agents, and Victoria Metrics Operator in Kubernetes. - Added resource specifications for `vmselect` in the VMCluster configuration. - Enhanced resource management for `vmselect` with defined limits and requests for memory and CPU. - **Bug Fixes** - Adjusted resource limits for Redis failover memory allocation. - **Documentation** - Updated README and release notes for various components, enhancing clarity and usability. - **Chores** - Updated image versions across multiple components for consistency and performance improvements. - Modified migration scripts to facilitate transitions and manage resources effectively. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Andrei Kvapil <kvapss@gmail.com>
22 lines
800 B
Makefile
22 lines
800 B
Makefile
export NAME=monitoring-agents
|
|
export NAMESPACE=cozy-monitoring
|
|
|
|
include ../../../scripts/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
|
|
# Metrics-server
|
|
helm repo add metrics-server https://kubernetes-sigs.github.io/metrics-server/
|
|
helm repo update metrics-server
|
|
helm pull metrics-server/metrics-server --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
|