Skip to content

Instantly share code, notes, and snippets.

@initcron
Created October 14, 2025 09:49
Show Gist options
  • Save initcron/ca5203eab68a7544aa7c56b9a230f84c to your computer and use it in GitHub Desktop.
Save initcron/ca5203eab68a7544aa7c56b9a230f84c to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: vote
namespace: default
spec:
replicas: 2
selector:
matchLabels:
app: vote
template:
metadata:
labels:
app: vote
spec:
containers:
- name: vote
image: schoolofdevops/vote:v13
imagePullPolicy: Always
ports:
- containerPort: 80
resources:
limits:
cpu: "250m"
memory: "128Mi"
requests:
cpu: "50m"
memory: "64Mi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment