新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
56
learn/learn-kubernetes-master/kiamol/ch14/kube/cadvisor.yaml
Normal file
56
learn/learn-kubernetes-master/kiamol/ch14/kube/cadvisor.yaml
Normal file
@@ -0,0 +1,56 @@
|
||||
apiVersion: apps/v1
|
||||
kind: DaemonSet
|
||||
metadata:
|
||||
name: cadvisor
|
||||
namespace: kube-system
|
||||
labels:
|
||||
kiamol: ch14
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: cadvisor
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: cadvisor
|
||||
spec:
|
||||
containers:
|
||||
- name: cadvisor
|
||||
image: k8s.gcr.io/cadvisor:v0.35.0
|
||||
volumeMounts:
|
||||
- name: rootfs
|
||||
mountPath: /rootfs
|
||||
readOnly: true
|
||||
- name: var-run
|
||||
mountPath: /var/run
|
||||
readOnly: true
|
||||
- name: sys
|
||||
mountPath: /sys
|
||||
readOnly: true
|
||||
- name: docker
|
||||
mountPath: /var/lib/docker
|
||||
readOnly: true
|
||||
- name: disk
|
||||
mountPath: /dev/disk
|
||||
readOnly: true
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
automountServiceAccountToken: false
|
||||
volumes:
|
||||
- name: rootfs
|
||||
hostPath:
|
||||
path: /
|
||||
- name: var-run
|
||||
hostPath:
|
||||
path: /var/run
|
||||
- name: sys
|
||||
hostPath:
|
||||
path: /sys
|
||||
- name: docker
|
||||
hostPath:
|
||||
path: /var/lib/docker
|
||||
- name: disk
|
||||
hostPath:
|
||||
path: /dev/disk
|
||||
Reference in New Issue
Block a user