Skip to content

Instantly share code, notes, and snippets.

View jasonmcintosh's full-sized avatar
🔬

Jason jasonmcintosh

🔬
View GitHub Profile
@jasonmcintosh
jasonmcintosh / spinnaker.yml
Last active October 6, 2022 15:59
BAREBONES Armory Spinnaker yaml connected to a mysql db
apiVersion: v1
kind: PersistentVolume
metadata:
name: mysql-pv-spinnaker
labels:
type: local
spec:
storageClassName: spinnaker
capacity:
storage: 10Gi
@petrbouda
petrbouda / memory-limit-request-jvm.md
Last active April 30, 2025 18:04
Memory LIMIT and REQUEST in Containers and JVM

Memory LIMIT and REQUEST in Containers and JVM

  • Do you run a JVM inside a container on Kubernetes (or maybe OpenShift)?
  • Do you struggle with REQUEST and LIMIT parameters?
  • Do you know the impact of those parameters on your JVM?
  • Have you met OOM Killer?

Hope you will find answers to these questions in this example-based article.

How to set up JVM Heap size in a Container