forked from yusheng-guo/kube-metrics-adapter

* Look at total replicas instead of readyReplicas In cases where replicas take a bit of time to get ready, the Stackset Controller just keeps on scaling. To avoid this issue, using the total replicas instead of replicas that are ready. Signed-off-by: Muhammad Muaaz Saleem <muhammad.muaaz.saleem@zalando.de> * Fix bitbucket clones Signed-off-by: Alexey Ermakov <alexey.ermakov@zalando.de> * Updating .gitignore Signed-off-by: Muhammad Muaaz Saleem <muhammad.muaaz.saleem@zalando.de> * Fixing Typo Signed-off-by: Muhammad Muaaz Saleem <muhammad.muaaz.saleem@zalando.de> * Adding tests to avoid regression Testing that collectors depend on Resource.Status.Replicas and not Resource.Status.ReadyReplicas Signed-off-by: Muhammad Muaaz Saleem <muhammad.muaaz.saleem@zalando.de>
19 lines
302 B
YAML
19 lines
302 B
YAML
language: go
|
|
dist: xenial
|
|
|
|
go:
|
|
- "1.11.2"
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
- go get github.com/lawrencewoodman/roveralls
|
|
|
|
script:
|
|
- make test
|
|
- make build.docker
|
|
- roveralls
|
|
- goveralls -v -coverprofile=roveralls.coverprofile -service=travis-ci
|