17 lines
257 B
YAML
17 lines
257 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: grafana
|
|
labels:
|
|
app: grafana
|
|
annotations:
|
|
prometheus.io/scrape: 'true'
|
|
spec:
|
|
ports:
|
|
- name: web
|
|
port: 3000
|
|
protocol: TCP
|
|
nodePort: 30902
|
|
selector:
|
|
app: grafana
|
|
type: NodePort |