Fixed port issue in service monitor

The way the service is created here creates a port named 80-8080 and not http. This causes this example to not work.
This commit is contained in:
cgkades 2019-08-02 10:38:34 -06:00 committed by GitHub
parent 03bc47e9fb
commit d453685af3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,7 +199,7 @@ spec:
matchLabels:
app: sample-app
endpoints:
- port: http
- port: 80-8080
```
</details>