Kubernetes: Difference between revisions

imported>Fundur
Undo revision 8893 by Fundur (talk)
imported>Fundur
m Fix for Revision 8893
Line 273: Line 273:
Some applications need enough shared memory to work properly.
Some applications need enough shared memory to work properly.
Create a new volumeMount for your Deployment:
Create a new volumeMount for your Deployment:
<syntaxhighlight lang=bash></syntaxhighlight>
<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
volumeMounts:
volumeMounts:
Line 279: Line 278:
   name: dshm
   name: dshm
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang=bash></syntaxhighlight>


and mark its <code>medium</code> as <code>Memory</code>:
and mark its <code>medium</code> as <code>Memory</code>:
<syntaxhighlight lang=bash></syntaxhighlight>
<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
volumes:
volumes:
Line 289: Line 286:
   medium: Memory
   medium: Memory
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang=bash></syntaxhighlight>


== Tooling ==
== Tooling ==