Created
March 14, 2018 04:42
-
-
Save ugurcan377/5a5c9534f5d5d51c597f8e012f0ce6c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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