* Add Prometheus to Kubernetes Catalog * Updated config.yml * Aligning version in spec with config The version in rancher-compose.yml was different than in config.yml
22 lines
360 B
YAML
22 lines
360 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
labels:
|
|
name: node-exporter-rc
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: node-exporter
|
|
spec:
|
|
restartPolicy: Always
|
|
containers:
|
|
- image: prom/node-exporter:latest
|
|
imagePullPolicy: Always
|
|
name: node-exporter
|
|
|
|
|