forked from LaconicNetwork/kompose
This commit adds mem_limit support. Taking the value from docker-compose.yaml and converting it to it's associative value in Kubernetes artifacts. Closes (half) of https://github.com/kubernetes-incubator/kompose/issues/267
12 lines
178 B
YAML
12 lines
178 B
YAML
version: "2"
|
|
|
|
services:
|
|
redis:
|
|
image: redis:3.0
|
|
networks:
|
|
- default
|
|
ports:
|
|
- "6379/tcp"
|
|
- "1234:1235/udp"
|
|
mem_limit: 10000Mb
|