blob: 58f084c1e43224e234b95fc96a9255337d54cf08 [file] [log] [blame]
Marcel van Lohuizen02173f82018-12-20 13:27:07 +01001package kube
2
3_component: "frontend"
4
5deployment <X> spec template: {
6 metadata annotations: {
7 "prometheus.io.scrape": "true"
8 "prometheus.io.port": "\(spec.containers[0].ports[0].containerPort)"
9 }
10 spec containers: [{
11 ports: [{containerPort: 7080 | int}] // 7080 is the default
12 }]
13}