kompose/docs
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
..
images add architecture doc 2016-08-15 22:47:23 +07:00
architecture.md kubernetes-incubator -> kubernetes 2017-07-12 15:42:13 -04:00
conversion.md Adds healthcheck 2017-08-25 10:02:51 -04:00
development.md kubernetes-incubator -> kubernetes 2017-07-12 15:42:13 -04:00
installation.md Update installation instructions 2017-08-02 10:20:37 -04:00
integrations.md Add author to Kompose UI 2017-08-02 16:50:50 -07:00
quickstart.md Adds clarification on commands 2017-07-19 13:06:12 -04:00
README.md Update documentation to reflect quickstart 2017-06-01 15:35:05 -04:00
user-guide.md kubernetes-incubator -> kubernetes 2017-07-12 15:42:13 -04:00