coroot / helm-charts

Coroot Helm charts
Apache License 2.0
13 stars 15 forks source link

AWS agent helm chart #1

Closed montag closed 1 year ago

montag commented 1 year ago

Any plans for a helm chart for the AWS version of the coroot agent?

apetruhin commented 1 year ago

The chart is ready:

helm repo add coroot https://coroot.github.io/helm-charts
helm repo update
helm install --namespace coroot --create-namespace \
    --set aws.region=<REGION> \
    --set aws.key=<KEY> \
    --set aws.secret=<SECRET> \
    --set rds.user=<USER> \
    --set rds.password=<PASSWORD> \
    aws-agent coroot/aws-agent

https://coroot.com/docs/metric-exporters/aws-agent/installation

montag commented 1 year ago

Perfect! Thank you.