blob: 4f0639424483af61f27f9e00661dcd36a43ef1a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
apiVersion: v1
kind: Service
metadata:
  name: site
  annotations:
    prometheus.io/scrape: "true"
    prometheus.io/port: "8000"
spec:
  selector:
    app: site
  ports:
    - protocol: TCP
      port: 80
      targetPort: 8000
 
  |