小编swe*_*d90的帖子

Helm 不考虑我的远程仓库

我正在使用 helm 2.6.1 将包部署到我的 kubernetes 集群。我创建了一个 nexus 原始存储库来托管打包的舵图。我也有上传到相同的索引文件。

--charts
 - wordpress-0.1.0.tgz
 - index.yaml
Run Code Online (Sandbox Code Playgroud)

但是,当我尝试进行 helm 安装时,它从未找到该软件包。我已经尝试了以下所有方法。还有其他选择吗?

+ helm repo list
  NAME      URL                                                                          
  stable    https://kubernetes-charts.storage.googleapis.com                             
  local     http://127.0.0.1:8879/charts                                                 
  helm-repo https://admin:admin@nexus.hosted.com/repository/kubecharts/charts

+ helm repo update

Hang tight while we grab the latest from your chart repositories...
...Skip local chart repository
...Successfully got an update from the "helm-repo" chart repository
...Unable to get an update from the "stable" chart repository 
(https://kubernetes-charts.storage.googleapis.com):
Get https://kubernetes-charts.storage.googleapis.com/index.yaml: dial tcp: 
lookup kubernetes-charts.storage.googleapis.com on 10.00.0.00:53: no such 
host
Update Complete. …
Run Code Online (Sandbox Code Playgroud)

nexus kubernetes kubernetes-helm

7
推荐指数
1
解决办法
3851
查看次数

Prometheus yaml 文件中的变量替换

我正在使用给定的配置与 Thanos 一起部署 Prometheus:

global:
  scrape_interval: 15s  # By default, scrape targets every 15 seconds.

 # Attach these labels to any time series or alerts when communicating with
 # external systems (federation, remote storage, Alertmanager).
 external_labels:
   monitor: %%CLUSTER%%
   replica: $(HOSTNAME)
Run Code Online (Sandbox Code Playgroud)

我从 Thanos 示例文档中得到了这个,但我无法使其工作。“%%CLUSTER%% 给出“无法以给定令牌开始”错误,而 HOSTNAME 替换从未发生。

我在这个问题上读到不支持变量替换,但 Thanos 文档另有说明。 https://github.com/prometheus/prometheus/issues/2357

还有其他方法可以实现吗?

yaml kubernetes prometheus thanos

5
推荐指数
1
解决办法
3549
查看次数

Prometheus 和 nfs 存储

根据 prometheus storage.md ,建议不要使用 nfs 存储作为 prometheus 的持久卷。

但像 prometheus Operator 和 openshift 这样的解决方案展示了使用 nfs 作为 prometheus 持久卷的示例。

那么我在这里缺少什么?如果不推荐使用 nfs,那么为什么这些工具会分享使用 nfs 作为 prometheus 存储选项的示例?

有谁知道 Prometheus 的 NetApp/Trident 的 nfs 替代品是什么?

netapp trident kubernetes prometheus

4
推荐指数
1
解决办法
5553
查看次数