kompose/script/test/fixtures
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
..
buildargs Adding save command to annotation 2017-08-14 12:22:33 +05:30
buildconfig Adds both build and push support 2017-06-14 10:19:12 -04:00
bundles some of created objects were missing io.kompose.service label 2017-05-16 17:56:32 +02:00
change-in-volume Adding save command to annotation 2017-08-14 12:22:33 +05:30
dockerfilepath Validate dockerfilepath in buildconfig 2017-05-30 16:31:20 +05:30
entrypoint-command Adding save command to annotation 2017-08-14 12:22:33 +05:30
envvars-separators Adding save command to annotation 2017-08-14 12:22:33 +05:30
etherpad Adding save command to annotation 2017-08-14 12:22:33 +05:30
expose-service Adding save command to annotation 2017-08-14 12:22:33 +05:30
gitlab Adding save command to annotation 2017-08-14 12:22:33 +05:30
group-add Adding save command to annotation 2017-08-14 12:22:33 +05:30
healthcheck Adds healthcheck 2017-08-25 10:02:51 -04:00
keyonly-envs Adding save command to annotation 2017-08-14 12:22:33 +05:30
label-port Failing when port is specified with labels 2017-06-15 09:30:01 +05:30
mem-limit Adding save command to annotation 2017-08-14 12:22:33 +05:30
multiple-compose-files Adding save command to annotation 2017-08-14 12:22:33 +05:30
nginx-node-redis Adding save command to annotation 2017-08-14 12:22:33 +05:30
ports-with-ip Adding save command to annotation 2017-08-14 12:22:33 +05:30
ports-with-proto Adding save command to annotation 2017-08-14 12:22:33 +05:30
redis-example Move docker-compose.yml test file to tests 2017-04-04 09:09:12 -04:00
restart-options Added support for group_add key 2017-08-10 11:54:35 +05:30
service-name-change Adding save command to annotation 2017-08-14 12:22:33 +05:30
stdin-true Adding save command to annotation 2017-08-14 12:22:33 +05:30
tty-true Adding save command to annotation 2017-08-14 12:22:33 +05:30
v3 Adds healthcheck 2017-08-25 10:02:51 -04:00
volume-mounts Adding save command to annotation 2017-08-14 12:22:33 +05:30
yaml-and-yml Adding save command to annotation 2017-08-14 12:22:33 +05:30