mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-13 21:59:55 +00:00
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
app: open-vm-tools
|
|
name: open-vm-tools
|
|
namespace: kube-system
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: open-vm-tools
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: open-vm-tools
|
|
spec:
|
|
hostNetwork: true
|
|
hostPID: true
|
|
priorityClassName: system-cluster-critical
|
|
tolerations:
|
|
- key: node.cloudprovider.kubernetes.io/uninitialized
|
|
value: "true"
|
|
effect: NoSchedule
|
|
- key: node-role.kubernetes.io/master
|
|
- key: node-role.kubernetes.io/master
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
- key: node-role.kubernetes.io/control-plane
|
|
- key: node-role.kubernetes.io/control-plane
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
containers:
|
|
- image: linuxkit/open-vm-tools:4c3158c7ba27f7ad0ede5d383ca25b57c5588a26
|
|
name: open-vm-tools
|
|
resources:
|
|
requests:
|
|
memory: "5Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "25Mi"
|
|
cpu: "500m"
|
|
securityContext:
|
|
privileged: true
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|