2

我正在使用 S2I 在 OpenShift Dedicated 上构建一个 maven 项目,但构建失败并显示“通用构建失败 - 检查日志以获取详细信息”。

在此处输入图像描述

但是,构建日志没有显示错误

在此处输入图像描述

为什么这个构建失败?

4

2 回答 2

3

在 ptrk 的回答诊断出这是问题之后:有两种方法可以在运行时在 OpenShift 上为 Wildfly pod 提供更多内存:

  • 在控制台中:部署 -> 选择部署 -> 编辑资源限制
  • 在模板中

对于构建内存,您还可以在模板中指定它:

  - kind: BuildConfig
    ...
    spec:
      ...
      resources:
        limits:
          cpu: 1
          memory: 1Gi
        # requests:
          # cpu: 1
          # memory: 1Gi
于 2018-04-25T12:59:27.110 回答
0

按照@Graham 的建议检查限制,方法是:

oc -n yourproject get limits -o yaml
oc -n yourproject get quota -o yaml

甚至直接编辑:

oc -n yourproject edit limits

# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
kind: LimitRange
metadata:
  creationTimestamp: 1999-08-11T13:58:34Z
  name: resource-limits
  namespace: yourproject
  resourceVersion: "61912526"
  selfLink: /api/v1/namespaces/betvictor/limitranges/resource-limits
  uid: 2a275347-7e9d-11e7-8242-005056957160
spec:
  limits:
  - max:
      memory: 3001Mi
    min:
      memory: 10Mi
    type: Pod
  - default:
      memory: 300Mi
    defaultRequest:
      memory: 250Mi
    max:
      memory: 3000Mi
    min:
      memory: 10Mi
    type: Container

注意单位,如果每个条目都相同,则更好。Pod 最大值必须等于或大于容器最大值。

据我所知,构建一个 java 应用程序的半场演出并不多......

于 2018-04-23T11:33:50.320 回答