Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created May 14, 2025 17:11
Show Gist options
  • Save larkintuckerllc/51deb6edb758bf6a3c80d638405739b4 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/51deb6edb758bf6a3c80d638405739b4 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
namespace: default
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 100m
memory: 128Mi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment