Created
February 16, 2019 18:13
-
-
Save anxious-coder-lhs/eb1176b88c32fd5b973989c039a07a0e to your computer and use it in GitHub Desktop.
Ghost pod K8s file
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: ghost | |
labels: | |
app: ghost | |
env: prod | |
spec: | |
containers: | |
- name: ghost | |
image: ghost:latest | |
ports: | |
- name: http | |
containerPort: 2368 | |
resources: | |
limits: | |
cpu: 0.5 | |
memory: "500Mi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment