我minikube
和kubectl
安装:
$ minikube version
minikube version: v1.4.0
commit: 7969c25a98a018b94ea87d949350f3271e9d64b6
$ kubectl version
Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.0", GitCommit:"2bd9643cee5b3b3a5ecbd3af49d09018f0773c77", GitTreeState:"clean", BuildDate:"2019-09-18T14:36:53Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.0", GitCommit:"2bd9643cee5b3b3a5ecbd3af49d09018f0773c77", GitTreeState:"clean", BuildDate:"2019-09-18T14:27:17Z", GoVersion:"go1.12.9", Compiler:"gc", Platform:"linux/amd64"}
然后,我按照https://helm.sh/docs/using_helm/中的说明进行操作:
我已经下载了https://get.helm.sh/helm-v2.13.1-linux-amd64.tar.gz
我跑了
$ tar -xzvf Downloads/helm-v2.13.1-linux-amd64.tar.gz linux-amd64/
linux-amd64/LICENSE
linux-amd64/tiller
linux-amd64/helm
linux-amd64/README.md
但是现在,如果我检查我的helm
版本,我会得到:
$ helm version
Client: &version.Version{SemVer:"v2.13.1", GitCommit:"618447cbf203d147601b4b9bd7f8c37a5d39fbb4", GitTreeState:"clean"}
Error: could not find tiller
我已尝试运行helm init
,但得到以下信息:
$ helm init
$HELM_HOME has been configured at /home/SERILOCAL/<my-username>/.helm.
Error: error installing: the server could not find the requested resource
如何helm
正确初始化?
当前掌舵版本不适用于kubernetes 1.16.0版本
您可以将kubernetes降级到1.15.3版
minikube start --kubernetes-version 1.15.3
helm init
或使用我的解决方案将其修复为版本1.16.0
您必须创建分 till
服务帐户
和
ClusterRoleBinding 。
您可以使用以下命令简单地做到这一点:
kubectl --namespace kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
只需创建分till
helm init --override spec.selector.matchLabels.'name'='tiller',spec.selector.matchLabels.'app'='helm' --output yaml | sed 's@apiVersion: extensions/v1beta1@apiVersion: apps/v1@' | kubectl apply -f -
下面是运行的吊舱:
我发现下面的讨论是:得到一个 “在$PATH中找不到可执行文件” 那解决了我的问题,但只是部分的。在我的最后一个命令中,我指定: 映像生成时没有任何错误或警告。但是,当我docker运行时,我现在得到以下错误: /bin/sh:1:/home/ubuntu/node-v0.10.16-linux-x64/bin/node:找不到 该目录包含在我的语句中。我还需要找什么?
我正在尝试在CentOS机器上安装django-defectDojo/django-defectDojo/blob/master/kubernetes.md 经过进一步检查,我相信这与postgresql图表有关,但我无法解决这个问题。 我的库贝特尔版本是 库贝特尔版本 GitVersion:“V1.17.1”,GitCommit:“D224476CD0730BACA2B6E357D144171E
有什么建议吗? 这对btw-helm没有帮助:错误:找不到可用的发行版名称
问题内容: 在ubuntu 15.10上执行eiskaltdc ++时,出现以下错误: 我能够使用Qt Creator成功地编译应用程序。 编辑 运行ldd给了我这个。我不确定如何解释这个 请提出解决方案。谢谢。 问题答案: 发生问题是因为您从发行版中安装了Qt,而ld将默认使用它。为避免此类问题,您可以编译或一起使用以帮助链接器找到所需的Qt版本。
当我使用Jikes rvm运行我的程序“genregex.class”时, 我得到运行时错误: 下面是我的代码 即使在我添加一行“import java.util.scanner;”我还是犯了这个错误。有线索吗?谢谢!