mirror of
https://github.com/KevinMidboe/kazan.git
synced 2025-10-29 01:30:15 +00:00
25 lines
484 B
YAML
25 lines
484 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
app: microbot
|
|
name: microbot-daemonset
|
|
namespace: microbot
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: microbot
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: microbot
|
|
spec:
|
|
containers:
|
|
- image: dontrebootme/microbot:v1
|
|
imagePullPolicy: IfNotPresent
|
|
name: microbot
|
|
resources: {}
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
|