【发布时间】:2018-10-17 05:33:46
【问题描述】:
我使用 kubeadm 建立了一个 Kubernetes 集群。
[root@master fedora]# kubectl version
Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.2", GitCommit:"81753b10df112992bf51bbc2c2f85208aad78335", GitTreeState:"clean", BuildDate:"2018-04-27T09:22:21Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.2", GitCommit:"81753b10df112992bf51bbc2c2f85208aad78335", GitTreeState:"clean", BuildDate:"2018-04-27T09:10:24Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
我使用helm 安装了nginx-ingress。
helm install stable/nginx-ingress --name=nginx --namespace=ingress-nginx -f nginx-values.yaml
配置文件看起来像this。
我还使用 helm 和 this configuration file 安装了 Jupyterhub:
helm version
Client: &version.Version{SemVer:"v2.9.0", GitCommit:"f6025bb9ee7daf9fee0026541c90a6f557a3e0bc", GitTreeState:"clean"}
Server: &version.Version{SemVer:"v2.9.0", GitCommit:"f6025bb9ee7daf9fee0026541c90a6f557a3e0bc", GitTreeState:"clean"}
helm install jupyterhub/jupyterhub --version=v0.7-fd73c61 --name=jh07 --namespace=jh07 -f config.yaml --timeout=14400
一切正常,除了转发到 GitHub-Authentication 服务。 I think it might have to do with this issue.
我必须在 helm 配置文件中更改哪些设置才能使 nginx 转发文字请求?
【问题讨论】:
标签: nginx github kubernetes kubernetes-helm jupyterhub