Skip to content

Instantly share code, notes, and snippets.

@bitwhys
Forked from parthghiya/app.yaml
Created July 16, 2019 22:52
Show Gist options
  • Save bitwhys/2154e4b2c0d6aa5ba376d6af34a1547c to your computer and use it in GitHub Desktop.
Save bitwhys/2154e4b2c0d6aa5ba376d6af34a1547c to your computer and use it in GitHub Desktop.
sample yml file for microservices configuration with memory resources limit and cpu limit
apiVersion: v1
kind: Pod
metadata:
name: shopping-management
spec:
containers:
- name: shopping-management
image: shopping-service
resources:
requests:
memory: "128Mi"
cpu: "500m"
limits:
memory: "256i"
cpu: "1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment