Skip to content

Instantly share code, notes, and snippets.

@ugurcan377
Created March 14, 2018 04:42
Show Gist options
  • Save ugurcan377/5a5c9534f5d5d51c597f8e012f0ce6c8 to your computer and use it in GitHub Desktop.
Save ugurcan377/5a5c9534f5d5d51c597f8e012f0ce6c8 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
name: frontend
spec:
containers:
- name: db
image: mysql
env:
- name: MYSQL_ROOT_PASSWORD
value: "password"
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
- name: wp
image: wordpress
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment