Functional Testing

Shell scripts to test k8s and os conversion
which can be ran by following command in root dir
`./script/test/cmd/tests.sh`
This commit is contained in:
Suraj Deshmukh
2016-08-08 04:39:10 +00:00
parent 786f0fee9b
commit 9a4e953555
35 changed files with 2918 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
version: "2"
services:
postgresql:
image: swordphilic/postgresql
ports:
- "$DB_PORT"
environment:
DB_NAME: $DB_NAME
DB_PASS: $DB_PASS
DB_USER: $DB_USER
gitlab:
image: swordphilic/gitlab
ports:
- "30000:80"
- "30001:443"
- "30002:22"
restart: always
environment:
DB_TYPE: postgres
DB_HOST: postgresql
DB_PORT: $DB_PORT
DB_NAME: $DB_NAME
DB_PASS: $DB_PASS
DB_USER: $DB_USER
REDIS_HOST: redis
REDIS_PORT: $REDIS_PORT
redis:
image: swordphilic/redis
ports:
- "$REDIS_PORT"