Issue#8241 (#8273)

* replace daemon set for deployment manifest

* nit
This commit is contained in:
Indhu Kumar 2022-02-26 14:53:17 -08:00 committed by GitHub
parent 1e66a54974
commit fd87363b5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,13 +61,21 @@ This tutorial will show you how to install [Prometheus](https://prometheus.io/)
```
- DaemonSet manifest:
```
..
- Deployment manifest:
```
apiVersion: v1
metadata:
kind: Deployment
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "10254"
..
spec:
ports:
- name: prometheus
containerPort: 10254
..
..
```