使用 Helm 安装包时如何更改依赖项的值?
Posted
技术标签:
【中文标题】使用 Helm 安装包时如何更改依赖项的值?【英文标题】:How to property change values of a dependency when the package installed using Helm? 【发布时间】:2021-07-11 15:25:16 【问题描述】:所以我从this tutorial 安装了kube-prometheus-stack
:
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
kubectl create ns monitoring
helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring
kubectl get all -n monitoring
然后我从 git prometheus-community/helm-charts 复制,修改 values.yaml
以满足我的需要(alertmanager 的东西),然后运行此命令以应用更新:
helm dependency update -n monitoring kube-prometheus-stack/ # one time
helm upgrade prometheus -n monitoring kube-prometheus-stack/
现在我需要 grafana 来使用共享密码,我创建了一个 basic-auth
秘密入口:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: monitoring-ingress
namespace: monitoring
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/auth-type: basic
nginx.ingress.kubernetes.io/auth-secret: basic-auth
nginx.ingress.kubernetes.io/auth-realm: "Authentication Required"
spec:
rules:
- host: monitor.blabla.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: prometheus-grafana.monitoring
port:
number: 80
tls:
- hosts:
- monitor.blabla.com
secretName: monitor.blabla.com-cert
这些工作正常,但问题是,我需要更改 grafana 的内部配置(使其成为 passwordless),这样做的正确/正确方法是什么?
【问题讨论】:
【参考方案1】:我已经部署了 7.3.5 版的 Grafana,我只能通过完全移除登录屏幕来实现。
在 Grafana 图表的 values.yaml
中查找 grafana.ini
级别。然后附加以下配置值对:
grafana.ini:
users:
viewers_can_edit: false
auth:
disable_login_form: false
disable_signout_menu: false
auth.anonymous:
enabled: true
org_role: Viewer
来源:https://github.com/helm/charts/issues/10622#issuecomment-454397952
【讨论】:
以上是关于使用 Helm 安装包时如何更改依赖项的值?的主要内容,如果未能解决你的问题,请参考以下文章
卸载包时如何在 pipenv 中自动删除依赖的 Python 包?
linux mysql 安装源码包时啥参数指定数据库目录位置,rpm 包 安装后如何更改数据库目录位置