Skip to content

Instantly share code, notes, and snippets.

@initcron
Created April 14, 2022 12:05
Show Gist options
  • Save initcron/54eeb9b33e5645fca3bd42205cffcdb5 to your computer and use it in GitHub Desktop.
Save initcron/54eeb9b33e5645fca3bd42205cffcdb5 to your computer and use it in GitHub Desktop.
DaemonSet version of vote app
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: vote
labels:
role: vote
namespace: test
spec:
minReadySeconds: 20
selector:
matchLabels:
app: python
role: vote
matchExpressions:
- key: version
operator: Exists
template:
metadata:
name: vote
labels:
app: python
role: vote
version: v8
spec:
containers:
- name: app
image: schoolofdevops/vote:v8
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