1

我正在尝试从Running Wordpress with a Single Pod设置示例。

$ gcloud 配置列表

[compute]
zone = europe-west1-c
[core]
account = user@email.com
disable_usage_reporting = False
project = com-project-default

因此,当我尝试连接到http://104.155.7.213/时,我收到“此网页不可用:ERR_CONNECTION_REFUSED”。

我尝试将“ Allow HTTP traffic”显式添加到 Compute Engine VM 仪表板中的节点,并且我尝试使用“ kubectl run”而不是弃用的“ kubectl run-container”,但它没有帮助。有时我在运行“”时会在“”列中收到“ last termination: exit code 2”(12)(但这次不是)`messagekubectl get pods

信息:

GKE 自 2015 年 6 月 10 日起

$ kubectl 版本

Client Version: version.Info{Major:"0", Minor:"18", GitVersion:"v0.18.1", GitCommit:"befd1385e5af5f7516f75a27a2628272bb9e9f36", GitTreeState:"clean"}

Server Version: version.Info{Major:"0", Minor:"18", GitVersion:"v0.18.2", GitCommit:"1f12b893876ad6c41396222693e37061f6e80fe1", GitTreeState:"clean"}

$ gcloud 版本

Google Cloud SDK 0.9.64
alpha 2015.06.02
bq 2.0.18
bq-nix 2.0.18
compute 2015.06.09
core 2015.06.09
core-nix 2015.06.02
dns 2015.06.02
gcloud 2015.06.09
gcutil-msg 2015.06.09
gsutil 4.13
gsutil-nix 4.12
kubectl 
kubectl-linux-x86_64 0.18.1
preview 2015.06.09
sql 2015.06.09

提前谢谢你的帮助!

4

1 回答 1

3

如果要直接使用节点VM的IP地址访问容器,除了容器端口外,还需要指定主机端口,例如 kubectl run-container wordpress --image=tutum/wordpress --port=80 --hostport=80

或者,您可以通过在主服务器上运行的代理访问 wordpress,方法是运行kubectl proxy然后将您的网络浏览器指向http://localhost:8001/api/v1beta3/proxy/namespaces/default/pods/wordpress-3gaq6.

于 2015-06-15T21:48:10.037 回答