gpt4 book ai didi

kubernetes - Helm 安装软件包的运输错误

转载 作者:行者123 更新时间:2023-12-02 11:39:36 25 4
gpt4 key购买 nike

我正在尝试在Kubernetes集群上使用Helm安装Postgresql。
当我运行helm install命令时,在运输中出现错误。

我在网上 bundle 了不同的解决方案,没有一个有效。

helm install --name realtesting stable/postgresql --debug

预期结果是在我的kubernetes集群上部署了postgresql

请帮忙!

最佳答案

似乎您尚未使用服务帐户初始化helm。

在rbac-config.yaml中:

apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: tiller
namespace: kube-system

步骤1 : kubectl apply -f rbac-config.yaml
步骤2 : helm init --service-account tiller --history-max 200
步骤3 :使用 heml ls测试设置。运行该命令将不会有任何输出,这是预期的。现在,您可以运行 helm install --name realtesting stable/postgresql

关于kubernetes - Helm 安装软件包的运输错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56073640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com