16 lines
288 B
YAML
16 lines
288 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: prometheus
|
|
namespace: prometheus
|
|
annotations:
|
|
prometheus.io/scrape: 'true'
|
|
prometheus.io/port: '9999'
|
|
spec:
|
|
selector:
|
|
app: prometheus
|
|
type: NodePort
|
|
ports:
|
|
- port: 9999
|
|
targetPort: 9999
|
|
nodePort: 30999 |