forked from LaconicNetwork/kompose
* Use go mod instead of glide * Add `--with-kompose-annotation` flag to allow us to switch it off for tests * Remove hostpid support (since the newest sdk does not support it) * Create new test script and fixtures * Remove replicationcontroller support
13 lines
231 B
YAML
13 lines
231 B
YAML
version: "3"
|
|
|
|
services:
|
|
redis:
|
|
image: redis
|
|
labels:
|
|
kompose.service.type: headless
|
|
healthcheck:
|
|
test: echo "hello world"
|
|
interval: 10s
|
|
timeout: 1s
|
|
retries: 5
|
|
restart: "unless-stopped" |