forked from LaconicNetwork/kompose
* chore: unify e2e tests to compose yaml Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * chore: update tests_new.sh to reflect changes of files names Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
36 lines
567 B
YAML
36 lines
567 B
YAML
version: "2"
|
|
|
|
services:
|
|
foo:
|
|
# create a pod
|
|
image: "foobar"
|
|
restart: "no"
|
|
environment:
|
|
GITHUB: surajssd
|
|
ports:
|
|
- "6379/tcp"
|
|
- "6379/udp"
|
|
- "3000"
|
|
- "3000-3005"
|
|
- "8000:8000"
|
|
- "9090-9091:8080-8081"
|
|
- "49100:22"
|
|
- "127.0.0.1:8001:8001"
|
|
- "127.0.0.1:5000-5010:5000-5010"
|
|
mem_limit: 10000
|
|
|
|
group_add:
|
|
- "1234"
|
|
|
|
redis:
|
|
image: redis:3.0
|
|
labels:
|
|
kompose.service.type: loadbalancer
|
|
ports:
|
|
- "6379/tcp"
|
|
- "1234:1235/udp"
|
|
|
|
mem_limit: 10000Mb
|
|
|
|
|