forked from mhausenblas/k8s-autoscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadvisor-rc.yaml
45 lines (45 loc) · 1.03 KB
/
cadvisor-rc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apiVersion: v1
kind: ReplicationController
metadata:
name: cadvisor
spec:
replicas: 1
selector:
app: cadvisor
template:
metadata:
labels:
app: cadvisor
spec:
containers:
- image: google/cadvisor:latest
name: cadvisor
ports:
- name: http
containerPort: 8080
volumeMounts:
- name: varroot
mountPath: "/rootfs"
readOnly: true
- name: varrun
mountPath: "/var/run"
readOnly: false
- name: varlibdocker
mountPath: "/var/lib/docker"
readOnly: true
- name: sysfs
mountPath: "/sys"
readOnly: true
volumes:
- name: varroot
hostPath:
path: "/"
- name: varrun
hostPath:
path: "/var/run"
- name: varlibdocker
hostPath:
path: "/var/lib/docker"
- name: sysfs
hostPath:
path: "/sys"