Prometheus-community/helm-charts - Install Helm Chart - CrashLoopBackOff

Hello World!

I just installed Docker Desktop (4.17.0 (99724)) on my Apple Air (M2, 2022) and after enabling Kubernetes flag, I now trying to follow Install Helm Chart

% helm version
version.BuildInfo{Version:"v3.11.2", GitCommit:"912ebc1cd10d38d340f048efaf0abda047c3468e", GitTreeState:"clean", GoVersion:"go1.20.2"}
% helm repo add prometheus-community https://prometheus-community.github.io/helm-charts

"prometheus-community" has been added to your repositories
% helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "prometheus-community" chart repository
...Successfully got an update from the "bitnami" chart repository
Update Complete. ⎈Happy Helming!⎈
% helm install prometheus prometheus-community/kube-prometheus-stack


NAME: prometheus
LAST DEPLOYED: Tue Apr  4 21:59:30 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
NOTES:
kube-prometheus-stack has been installed. Check its status by running:
  kubectl --namespace default get pods -l "release=prometheus"

Visit https://github.com/prometheus-operator/kube-prometheus for instructions on how to create & configure Alertmanager and Prometheus instances using the Operator.
% kubectl --namespace default get pods -l "release=prometheus"
NAME                                                   READY   STATUS             RESTARTS      AGE
prometheus-kube-prometheus-operator-579c654f9f-5zdzg   1/1     Running            0             61s
prometheus-kube-state-metrics-9bc7f5984-ldn7w          1/1     Running            0             61s
prometheus-prometheus-node-exporter-pp4rx              0/1     CrashLoopBackOff   3 (16s ago)   61s
% kubectl logs --namespace default prometheus-prometheus-node-exporter-pp4rx
failed to try resolving symlinks in path "/var/log/pods/default_prometheus-prometheus-node-exporter-pp4rx_a4192875-5875-417a-a575-bec6ea2a5a81/node-exporter/6.log": lstat /var/log/pods/default_prometheus-prometheus-node-exporter-pp4rx_a4192875-5875-417a-a575-bec6ea2a5a81/node-exporter/6.log: no such file or directory%
%

even though there are no errors during the installation phase, the prometheus-prometheus-node-exporter pod keeps in CrashLoopBackOff state.

Please advise.

I am having this same issue so hopefully someone has solved it.