kompose/script/test/fixtures/v3
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
..
docker-compose-deploy-mode.yaml Add deploy: mode: global support 2017-08-23 12:47:27 -04:00
docker-compose-env-subs.yaml fix env substitution for docker compose v3 2017-06-20 15:16:12 +02:00
docker-compose-env.yaml Add v3 support 2017-06-13 09:44:48 -04:00
docker-compose-full-example.yaml added support for restart-policy keys in v3 2017-07-06 17:44:19 +05:30
docker-compose-memcpu.yaml Add CPU limit, CPU Reservation and Memory Reservation 2017-08-03 09:41:14 -04:00
docker-compose-volumes.yaml Add v3 support 2017-06-13 09:44:48 -04:00
docker-compose.yaml Add v3 support 2017-06-13 09:44:48 -04:00
example1.env Add v3 support 2017-06-13 09:44:48 -04:00
example2.env Add v3 support 2017-06-13 09:44:48 -04:00
output-deploy-mode-k8s-template.json Add deploy: mode: global support 2017-08-23 12:47:27 -04:00
output-deploy-mode-os-template.json Add deploy: mode: global support 2017-08-23 12:47:27 -04:00
output-env-k8s.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-env-subs.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-k8s-full-example-template.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-k8s-full-example.json Adds healthcheck 2017-08-25 10:02:51 -04:00
output-k8s-template.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-memcpu-k8s.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-os-full-example.json Adds healthcheck 2017-08-25 10:02:51 -04:00
output-os-template.json Adding save command to annotation 2017-08-14 12:22:33 +05:30
output-volumes-k8s-template.json Adding save command to annotation 2017-08-14 12:22:33 +05:30