Changes for page Proxmox Backup server

Last modified by Kevin Wiki on 2024/05/21 21:23

From version 4.1
edited by Kevin Wiki
on 2024/04/06 10:10
Change comment: There is no comment for this version
To version 7.1
edited by Kevin Wiki
on 2024/04/06 10:12
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -12,6 +12,74 @@
12 12  Enabled: True
13 13  Job Comment: {{guestname}}, {{node}}, {{vmid}}{{/code}}
14 14  
15 +(% class="wikigeneratedid" id="H" %)
16 +{{code language="yaml" layout="LINENUMBERS"}}apiVersion: apps/v1
17 +kind: DaemonSet
18 +metadata:
19 + name: prometheus-node-exporter-daemonset
20 + namespace: monitoring
21 + labels:
22 + app: prometheus-node-exporter
23 +spec:
24 + selector:
25 + matchLabels:
26 + app: prometheus-node-exporter
27 + template:
28 + metadata:
29 + labels:
30 + app: prometheus-node-exporter
31 + spec:
32 + containers:
33 + - args:
34 + - --path.procfs=/host/proc
35 + - --path.sysfs=/host/sys
36 + - --path.rootfs=/host/root
37 + - --web.listen-address=:9100
38 + image: quay.io/prometheus/node-exporter:latest
39 + imagePullPolicy: IfNotPresent
40 + name: prometheus-node-exporter
41 + ports:
42 + - name: metrics
43 + containerPort: 9100
44 + hostPort: 9100
45 + securityContext:
46 + allowPrivilegeEscalation: false
47 + volumeMounts:
48 + - mountPath: /host/proc
49 + name: proc
50 + readOnly: true
51 + - mountPath: /host/sys
52 + name: sys
53 + readOnly: true
54 + - mountPath: /host/root
55 + mountPropagation: HostToContainer
56 + name: root
57 + readOnly: true
58 + hostNetwork: true
59 + hostPID: true
60 + restartPolicy: Always
61 + tolerations:
62 + - key: "node-role.kubernetes.io/master"
63 + effect: "NoSchedule"
64 + volumes:
65 + - hostPath:
66 + path: /proc
67 + type: ""
68 + name: proc
69 + - hostPath:
70 + path: /sys
71 + type: ""
72 + name: sys
73 + - hostPath:
74 + path: /
75 + type: ""
76 + name: root
77 + updateStrategy:
78 + rollingUpdate:
79 + maxSurge: 0
80 + maxUnavailable: 1
81 + type: RollingUpdate{{/code}}
82 +
15 15  = Methodology =
16 16  
17 17  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
... ... @@ -22,7 +22,7 @@
22 22  
23 23  = Proxmox backup server =
24 24  
25 -= =
93 += =
26 26  
27 27  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
28 28