mirror of https://github.com/easzlab/kubeasz.git
75 lines
1.7 KiB
YAML
75 lines
1.7 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: heapster
|
|
namespace: kube-system
|
|
---
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: heapster
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: heapster
|
|
namespace: kube-system
|
|
roleRef:
|
|
kind: ClusterRole
|
|
name: system:heapster
|
|
apiGroup: rbac.authorization.k8s.io
|
|
---
|
|
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: heapster
|
|
namespace: kube-system
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: heapster
|
|
template:
|
|
metadata:
|
|
labels:
|
|
task: monitoring
|
|
k8s-app: heapster
|
|
spec:
|
|
serviceAccountName: heapster
|
|
containers:
|
|
- name: heapster
|
|
#image: gcr.io/google_containers/heapster-amd64:v1.5.4
|
|
image: mirrorgooglecontainers/heapster-amd64:v1.5.4
|
|
imagePullPolicy: IfNotPresent
|
|
command:
|
|
- /heapster
|
|
#- --source=kubernetes:https://kubernetes.default
|
|
- --source=kubernetes.summary_api:''
|
|
#- --sink=influxdb:http://monitoring-influxdb.kube-system.svc:8086
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8082
|
|
scheme: HTTP
|
|
initialDelaySeconds: 180
|
|
timeoutSeconds: 5
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
task: monitoring
|
|
# For use as a Cluster add-on (https://github.com/kubernetes/kubernetes/tree/master/cluster/addons)
|
|
# If you are NOT using this as an addon, you should comment out this line.
|
|
#kubernetes.io/cluster-service: 'true'
|
|
kubernetes.io/name: Heapster
|
|
name: heapster
|
|
namespace: kube-system
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8082
|
|
selector:
|
|
k8s-app: heapster
|