Created
May 11, 2020 16:17
-
-
Save JordiCorbilla/a548b21aaf946ec3a64c25817e27baf1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: trading-platform-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: trading-platform-pod | |
template: | |
metadata: | |
labels: | |
app: trading-platform-pod | |
spec: | |
containers: | |
- name: trading-platform-container | |
image: trading-platform:v1 | |
resources: | |
limits: | |
memory: "128Mi" | |
cpu: "500m" | |
ports: | |
- containerPort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment