我正在尝试通过 http api 对 rabbitmq 管理控制台进行活动性检查。我在端点下的 helm values 文件中有目标;我正在使用http探针。
endpoints:
- module: rabbit_alive_check
port: http
scheme: http
url: "http://username:password@nodeip:15672/api/aliveness-test/%2F"
输出如预期的那样。但我希望替换我已经在 helm secrets 中加密的密码,而不是在 url 中硬编码。我采用了来自https://github.com/helm/charts/tree/master/stable/prometheus-blackbox-exporter的 prometheus-blackbox 导出器。
如何从 helm secrets.yaml 中调用密码?