helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

[kube-prometheus-stack] - ARM support

Open bmgante opened this issue 1 year ago • 5 comments

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

bmgante avatar May 29 '23 19:05 bmgante

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

alexwiedermann avatar May 30 '23 00:05 alexwiedermann

Thanks @alexwiedermann

bmgante avatar May 30 '23 11:05 bmgante

@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?

QuentinBisson avatar Jun 08 '23 19:06 QuentinBisson

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.

stale[bot] avatar Aug 10 '23 02:08 stale[bot]

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"

elcomtik avatar Dec 16 '23 08:12 elcomtik