当我尝试使用Minishift执行Syndesis映像的构建时,它以以下错误结束:
[ERROR] Failed to execute goal
io.fabric8:fabric8-maven-plugin:3.5.38:build (exec) on project s2i:
Failed to execute the build: Unable to build the image using the
OpenShift build service: Can't instantiate binary build, due to error
reading/writing stream. Can be caused if the output stream was closed
by the server. Connection reset我检查了minishift正在以"minishift状态“运行:
$ minishift status
Minishift: Running
Profile: minishift
OpenShift: Running (openshift v3.11.0+82a43f6-231)
DiskUsage: 76% of 20G (Mounted On: /mnt/sda1)
CacheUsage: 1.679 GB (used by oc binary, ISO or cached images)并使用"oc get pods“命令检查是否安装了正确的项目/pod。
发布于 2019-08-05 15:33:39
问题是迷你飞船的空间越来越小。
我可以使用以下命令恢复一些空间
$ syndesis dev --cleanup执行此操作时,请确保nip.io域在您的计算机上正常工作。如果不是这样,请将以下条目添加到/etc/hosts:
$IP $IP.nip.io syndesis.$IP.nip.io docker-registry-default.$IP.nip.io其中$IP是minishift的IP,可以通过以下命令找到:
$ minishift ip
192.168.42.58https://stackoverflow.com/questions/57354037
复制相似问题