prometheus-community / helm-charts

Prometheus community Helm charts
Apache License 2.0
5.01k stars 5k forks source link

[kube-prometheus-stack] - ARM support #3443

Open bmgante opened 1 year ago

bmgante commented 1 year ago

Hi everyone, can someone confirm if we can deploy this helm chart in arm (aws graviton) instances? Is there any change required to do that? Thanks

alexwiedermann commented 1 year ago
image

All kube-prometheus-stack images are multi-arch. https://quay.io/repository/prometheus-operator/prometheus-operator?tab=tags so just deploy normally.

bmgante commented 1 year ago

Thanks @alexwiedermann

QuentinBisson commented 1 year ago

@bmgante if you managed to make it run with a custom set of values, do you mind providing that in the documentation of this chart?

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Any further update will cause the issue/pull request to no longer be considered stale. Thank you for your contributions.

elcomtik commented 9 months ago

If you have cluster with mixed arch nodes or just testing if it will run on arm arch you can specify something like this

   prometheus:
     prometheusSpec:
       nodeSelector:
         kubernetes.io/arch: "arm64"
   alertmanager:
     alertmanagerSpec:
       nodeSelector:
         kubernetes.io/arch: "arm64"
   grafana:
     nodeSelector:
       kubernetes.io/arch: "arm64"