diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-10-24 16:12:53 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-10-24 23:19:11 +0000 |
commit | ab83fd6f873d984e225d80d83834aee657d91c75 (patch) | |
tree | 7bc4ce4789a7598cc077d631b6cb941f2b50ab7c /templates/deployment.yaml | |
parent | 7588343a735c13818cf59ad58361135faa52075c (diff) |
Increase /dev/shm size to fix chrome crashes
Chrome was randomly crashing while running Portal ETE
test suites. This appears to be caused by /dev/shm being
too small in the container. This patch increases the
size of /dev/shm in the robot container.
Change-Id: I79b6c3b05cc817b59db68327978800d7f80bd3f9
Issue-ID: INT-586
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'templates/deployment.yaml')
-rw-r--r-- | templates/deployment.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/deployment.yaml b/templates/deployment.yaml index e50620f..e230f4c 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -49,6 +49,8 @@ spec: initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} volumeMounts: + - name: dshm + mountPath: /dev/shm - name: localtime mountPath: /etc/localtime readOnly: true @@ -74,6 +76,9 @@ spec: {{- else }} emptyDir: {} {{- end }} + - name: dshm + emptyDir: + medium: Memory - name: localtime hostPath: path: /etc/localtime |