无法将持久卷附加到使用 helm chart 安装的 Prometheus pod

问题描述 投票:0回答:0

我尝试使用下面提到的命令将成本监控工具 opencost 安装到我们的 kubernetes 集群:

helm 安装 my-prometheus --repo https://prometheus-community.github.io/helm-charts prometheus
--namespace prometheus --create-namespace
--set pushgateway.enabled=false
--set alertmanager.enabled=false
-f https://raw.githubusercontent.com/opencost/opencost/develop/kubernetes/prometheus/extraScrapeConfigs.yaml

(先决条件)

不幸的是我们没有使用任何 pv 和 pvc,所以我安装了一个 efs 驱动程序并且它工作正常。我在 AWS 中创建了一个 EFS 文件系统,并允许来自我的 k8 节点的入站流量。并创建了一个也带有文件系统 ID 的存储类。

只是为了检查天气 EFS 是否工作,尝试部署一个虚拟应用程序。数量具有约束力。

现在的问题是 prometheus pod 没有尝试将卷与我创建的存储类绑定。 它仍在尝试使用相同的默认 gp2 音量。

我尝试在 prometheus 的值文件中添加 pvc 相关代码,还尝试为 pvc 创建单独的 yaml 文件..没有任何效果

如果有人在这方面帮助我,那将非常有帮助。

提前致谢

kubernetes prometheus kubernetes-helm
© www.soinside.com 2019 - 2024. All rights reserved.