OpenShift Nexus Pod failed to Start During the CI/CD Pipeline Deployment: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 19: Line 19:
             cpu:
             cpu:
             memory: 1636Mi
             memory: 1636Mi
</pre>

Revision as of 20:03, 1 November 2017

Overview

The nexus pod would attempt to start and then would be immediately be terminated during the CI/CD Pipeline setup procedure. No useful error messages.

Got it to start by editing the deployment configuration and requesting less memory.

oc edit dc/nexus
spec:
  template:
    metadata:
    spec:
      containers:
      - image: ...
        name: nexus
        resource:
          limits:
            cpu:
            memory: 1636Mi