Created
November 13, 2024 11:22
-
-
Save fdonzello/721d269308581fa33be2b15ab8057248 to your computer and use it in GitHub Desktop.
deploy
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: friday | |
annotations: | |
author: Francesco Donzello | |
spec: | |
selector: | |
matchLabels: | |
app: friday | |
version: v1 | |
template: | |
metadata: | |
labels: | |
app: friday | |
version: v1 | |
spec: | |
containers: | |
- name: friday | |
image: nginx:alpine | |
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