• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

kubernetes / kompose / 2026
52%

Build:
DEFAULT BRANCH: master
Ran 11 Aug 2017 04:48PM UTC
Jobs 3
Files 9
Run time 2min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
2026

Pull #759

travis-ci

web-flow
Adds healthcheck

This PR adds support for HealthCheck, being able to supply, for example:

```yaml
version: "3"

services:
  redis:
    image: redis
    healthcheck:
      test: echo "hello world"
      interval: 10s
      timeout: 1s
      retries: 5
```

Which is then converted to:

```yaml
spec:
  containers:
  - image: redis
    livenessProbe:
      exec:
        command:
        - echo "hello world"
      failureThreshold: 5
      periodSeconds: 10
      timeoutSeconds: 1
    name: redis
    resources: {}
  restartPolicy: Always
```

At the moment, this only supports livenessProbe, with support for readinessProbe in the future.
Pull Request #759: Adds healthcheck

67 of 67 new or added lines in 2 files covered. (100.0%)

1160 of 2635 relevant lines covered (44.02%)

11.76 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
20
100.0
pkg/transformer/kubernetes/k8sutils.go
43
100.0
pkg/loader/compose/v3.go

Uncovered Existing Lines

Lines Coverage ∆ File
6
100.0
pkg/transformer/kubernetes/k8sutils.go
15
100.0
pkg/loader/compose/compose.go
17
100.0
pkg/loader/compose/v3.go
Jobs
ID Job ID Ran Files Coverage
1 2026.1 (BUILD_DOCS=yes) 11 Aug 2017 04:50PM UTC 0
44.02
Travis Job 2026.1
2 2026.2 11 Aug 2017 04:50PM UTC 0
44.02
Travis Job 2026.2
3 2026.3 11 Aug 2017 04:48PM UTC 0
44.02
Travis Job 2026.3
Source Files on build 2026
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #2026
  • Pull Request #759
  • PR Base - master (#2023)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc