-
Notifications
You must be signed in to change notification settings - Fork 1
/
wavefront-heapster.yaml
59 lines (59 loc) · 1.27 KB
/
wavefront-heapster.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: heapster
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: system:heapster
subjects:
- kind: ServiceAccount
name: heapster
namespace: kube-system
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: heapster
namespace: kube-system
---
apiVersion: v1
kind: ReplicationController
metadata:
labels:
k8s-app: heapster
name: heapster
version: v6
name: heapster
namespace: kube-system
spec:
replicas: 1
selector:
k8s-app: heapster
version: v6
template:
metadata:
labels:
k8s-app: heapster
version: v6
spec:
serviceAccount: "heapster"
containers:
- name: heapster
image: wavefronthq/heapster-amd64:latest
imagePullPolicy: Always
command:
- /heapster
- --source=kubernetes.summary_api:''
- --sink=wavefront:wavefront-proxy.default.svc.cluster.local:2878?clusterName=CLUSTERID&includeLabels=true
volumeMounts:
- name: ssl-certs
mountPath: /etc/ssl/certs
readOnly: true
ports:
- containerPort: 8082
protocol: TCP
volumes:
- name: ssl-certs
hostPath:
path: /etc/ssl/certs