Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / mc-stack / charts / elasticsearch / examples / docker-for-mac / values.yaml
1 ---
2 # Permit co-located instances for solitary minikube virtual machines.
3 antiAffinity: "soft"
4
5 # Shrink default JVM heap.
6 esJavaOpts: "-Xmx128m -Xms128m"
7
8 # Allocate smaller chunks of memory per pod.
9 resources:
10   requests:
11     cpu: "100m"
12     memory: "512M"
13   limits:
14     cpu: "1000m"
15     memory: "512M"
16
17 # Request smaller persistent volumes.
18 volumeClaimTemplate:
19   accessModes: [ "ReadWriteOnce" ]
20   storageClassName: "hostpath"
21   resources:
22     requests:
23       storage: 100M