Openshift:无法通过运行S2I到达GitHub

时间:2017-04-14 10:01:28

标签: openshift openshift-origin


我已经执行了Openshift Origin oc cluster up --version = latest 我可以看到已经推出了新版本( v3.6.0-alpha.1 + 7044e57-29 )。但从那以后,我无法构建任何图像。例如:

oc new-app --name=myapp openshift/wildfly~https://github.com/openshiftdemos/os-sample-java-web.git

结果:

error: build error: fatal: unable to access 'https://github.com/openshiftdemos/': Could not resolve host: github.com; Unknown error

我也试过用root运行oc cluster,但结果没有改变。最新版本发生了什么变化?

3 个答案:

答案 0 :(得分:1)

您是否尝试过使用最新的稳定版本? 如果这仍然不起作用,这可能是您的泊坞窗的版本。 尝试安装最新的稳定版本,然后检查您的docker版本。

答案 1 :(得分:1)

可能是防火墙背后的配置?如果是这样,请尝试设置HTTP_PROXY_HOST和HTTP_PROXY_PORT环境变量。

可以从here访问详细信息。

答案 2 :(得分:0)

尝试:

sudo oc cluster down
sudo iptables -F
sudo oc cluster up

另见https://github.com/openshift/origin/issues/12110