kompose/script
Charlie Drage 2e99b8fd3a 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.
2017-08-25 10:02:51 -04:00
..
test Adds healthcheck 2017-08-25 10:02:51 -04:00
test_in_container kubernetes-incubator -> kubernetes 2017-07-12 15:42:13 -04:00
test_in_openshift Update cluster tests, use local Kompose binary 2017-08-11 11:20:04 -04:00
test_k8s Change directory for cluster tests 2017-08-18 11:04:51 -04:00
check-gofmt.sh 2016 -> 2017 for licensing 2017-06-28 10:49:52 -04:00
check-vendor.sh 2016 -> 2017 for licensing 2017-06-28 10:49:52 -04:00
deploy_key.enc Sync changes from master to gh-pages on each merge request 2017-03-23 10:58:19 -04:00
generate-bintray-json.sh build and upload master builds to bintray 2017-08-21 17:06:33 +02:00
release.sh Update release script with properly formatted table 2017-07-20 12:21:40 -04:00
sync-docs.sh Update doc script 2017-07-17 10:42:10 -04:00