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 5.1
edited by Kevin Wiki
on 2024/04/06 10:11
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 += {{code language="yaml"}}apiVersion: apps/v1
16 +kind: DaemonSet
17 +metadata:
18 + name: prometheus-node-exporter-daemonset
19 + namespace: monitoring
20 + labels:
21 + app: prometheus-node-exporter
22 +spec:
23 + selector:
24 + matchLabels:
25 + app: prometheus-node-exporter
26 + template:
27 + metadata:
28 + labels:
29 + app: prometheus-node-exporter
30 + spec:
31 + containers:
32 + - args:
33 + - --path.procfs=/host/proc
34 + - --path.sysfs=/host/sys
35 + - --path.rootfs=/host/root
36 + - --web.listen-address=:9100
37 + image: quay.io/prometheus/node-exporter:latest
38 + imagePullPolicy: IfNotPresent
39 + name: prometheus-node-exporter
40 + ports:
41 + - name: metrics
42 + containerPort: 9100
43 + hostPort: 9100
44 + securityContext:
45 + allowPrivilegeEscalation: false
46 + volumeMounts:
47 + - mountPath: /host/proc
48 + name: proc
49 + readOnly: true
50 + - mountPath: /host/sys
51 + name: sys
52 + readOnly: true
53 + - mountPath: /host/root
54 + mountPropagation: HostToContainer
55 + name: root
56 + readOnly: true
57 + hostNetwork: true
58 + hostPID: true
59 + restartPolicy: Always
60 + tolerations:
61 + - key: "node-role.kubernetes.io/master"
62 + effect: "NoSchedule"
63 + volumes:
64 + - hostPath:
65 + path: /proc
66 + type: ""
67 + name: proc
68 + - hostPath:
69 + path: /sys
70 + type: ""
71 + name: sys
72 + - hostPath:
73 + path: /
74 + type: ""
75 + name: root
76 + updateStrategy:
77 + rollingUpdate:
78 + maxSurge: 0
79 + maxUnavailable: 1
80 + type: RollingUpdate
81 +{{/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