Skip to content

Instantly share code, notes, and snippets.

@initcron
Created July 16, 2025 04:14
Show Gist options
  • Save initcron/976787a07f7451d3c5c6c3b6eda12944 to your computer and use it in GitHub Desktop.
Save initcron/976787a07f7451d3c5c6c3b6eda12944 to your computer and use it in GitHub Desktop.
Vote Deploymeny Manifests with Resources Configured
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: vote
name: vote
spec:
replicas: 2
selector:
matchLabels:
app: vote
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: vote
spec:
containers:
- image: schoolofdevops/vote:v1
name: vote
resources:
requests:
cpu: "50m"
memory: "64Mi"
limits:
cpu: "250m"
memory: "128Mi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment