minikube/deploy/addons/heapster/heapster-rc.yaml

55 lines
1.6 KiB
YAML
Raw Normal View History

2017-11-10 09:02:49 +00:00
# Copyright 2017 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: v1
kind: ReplicationController
metadata:
labels:
k8s-app: heapster
kubernetes.io/minikube-addons: heapster
2017-11-10 09:02:49 +00:00
addonmanager.kubernetes.io/mode: Reconcile
2018-05-18 03:21:01 +00:00
version: v1.5.3
name: heapster
namespace: kube-system
spec:
replicas: 1
selector:
k8s-app: heapster
2018-05-18 03:21:01 +00:00
version: v1.5.3
2017-11-10 09:02:49 +00:00
addonmanager.kubernetes.io/mode: Reconcile
template:
metadata:
labels:
k8s-app: heapster
2018-05-18 03:21:01 +00:00
version: v1.5.3
2017-11-10 09:02:49 +00:00
addonmanager.kubernetes.io/mode: Reconcile
spec:
containers:
- name: heapster
2018-05-18 03:21:01 +00:00
image: k8s.gcr.io/heapster-amd64:v1.5.3
imagePullPolicy: IfNotPresent
command:
- /heapster
2017-11-10 09:02:49 +00:00
- --source=kubernetes.summary_api:''
- --sink=influxdb:http://monitoring-influxdb:8086
- --metric_resolution=60s
volumeMounts:
- name: ssl-certs
mountPath: /etc/ssl/certs
readOnly: true
volumes:
- name: ssl-certs
hostPath:
path: /etc/ssl/certs