mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2025-06-13 22:11:10 +00:00
24 lines
480 B
YAML
24 lines
480 B
YAML
---
|
|
# Permit co-located instances for solitary minikube virtual machines.
|
|
antiAffinity: "soft"
|
|
|
|
# Shrink default JVM heap.
|
|
esJavaOpts: "-Xmx128m -Xms128m"
|
|
|
|
# Allocate smaller chunks of memory per pod.
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "512M"
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "512M"
|
|
|
|
# Request smaller persistent volumes.
|
|
volumeClaimTemplate:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
storageClassName: "local-path"
|
|
resources:
|
|
requests:
|
|
storage: 100M
|