Skip to content

Commit

Permalink
[RHPAM-2354] OutOfMemoryError on Datagrid cause issues on project imp…
Browse files Browse the repository at this point in the history
…ort indexing (#284)

Signed-off-by: David Ward <dward@redhat.com>
  • Loading branch information
errantepiphany committed Sep 6, 2019
1 parent b601b63 commit ed5b60d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions templates/rhdm75-authoring-ha.yaml
Expand Up @@ -173,12 +173,17 @@ parameters:
- displayName: DataGrid Image
description: DataGrid image.
name: DATAGRID_IMAGE
value: registry.redhat.io/jboss-datagrid-7/datagrid73-openshift:1.1
value: registry.redhat.io/jboss-datagrid-7/datagrid73-openshift:1.2
required: true
- displayName: DataGrid Container CPU Limit
description: DataGrid Container cpu limit.
name: DATAGRID_CPU_LIMIT
value: "1000m"
required: true
- displayName: DataGrid Container Memory Limit
description: DataGrid Container memory limit.
name: DATAGRID_MEMORY_LIMIT
value: "512Mi"
value: "2Gi"
required: true
- displayName: DataGrid Volume Capacity
description: Size of the persistent storage for DataGrid's runtime data.
Expand Down Expand Up @@ -754,9 +759,10 @@ objects:
timeoutSeconds: 10
resources:
limits:
cpu: ${DATAGRID_CPU_LIMIT}
memory: ${DATAGRID_MEMORY_LIMIT}
requests:
cpu: "0.5"
cpu: ${DATAGRID_CPU_LIMIT}
memory: ${DATAGRID_MEMORY_LIMIT}
volumeMounts:
- mountPath: /opt/datagrid/standalone/data
Expand Down

0 comments on commit ed5b60d

Please sign in to comment.