Skip to content

Instantly share code, notes, and snippets.

@initcron
Created January 23, 2023 05:16
Show Gist options
  • Save initcron/e86e86314fb6bfd6e5495763837ad089 to your computer and use it in GitHub Desktop.
Save initcron/e86e86314fb6bfd6e5495763837ad089 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: vote
labels:
role: vote
spec:
minReadySeconds: 20
replicas: 4
selector:
matchLabels:
app: python
role: vote
matchExpressions:
- key: version
operator: Exists
template:
metadata:
name: vote
labels:
app: python
role: vote
version: v1
spec:
containers:
- name: app
image: schoolofdevops/vote:v1
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "250m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment