Skip to content

Commit

Permalink
Added a daemon set
Browse files Browse the repository at this point in the history
  • Loading branch information
qtsathish committed Apr 10, 2021
1 parent 0affe70 commit 56fd517
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions April21/daemonset/daemon-demo.yaml
@@ -0,0 +1,25 @@
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: daemonset-demo
labels:
app: daemonset-example
spec:
minReadySeconds: 10
selector:
matchLabels:
app: daemon
template:
metadata:
labels:
app: daemon
version: "1.0"
spec:
containers:
- name: alpine
image: alpine
args:
- /bin/sh
- -c
- sleep 1d

0 comments on commit 56fd517

Please sign in to comment.