Skip to content

Instantly share code, notes, and snippets.

@fdonzello
Created November 13, 2024 11:22
Show Gist options
  • Save fdonzello/721d269308581fa33be2b15ab8057248 to your computer and use it in GitHub Desktop.
Save fdonzello/721d269308581fa33be2b15ab8057248 to your computer and use it in GitHub Desktop.
deploy
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