This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow TCK to run as docker container
- Loading branch information
Showing
8 changed files
with
135 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
cloudstate-tck { | ||
#verify is a list of names of combinations to run for the TCK | ||
verify = [] | ||
#combinations is a list of config objects with a name, a proxy, and a frontend | ||
combinations = [] | ||
|
||
tck { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
port = 8090 | ||
} | ||
|
||
proxy { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
port = 9000 | ||
directory = ${user.dir} | ||
command = [] | ||
stop-command = [] | ||
env-vars { | ||
} | ||
# If specified, will start a docker container, with the environment variable USER_FUNCTION_HOST set to the host | ||
# to connect to, USER_FUNCTION_PORT set to the port to connect to, and HTTP_PORT set to the port above. | ||
docker-image = "" | ||
} | ||
|
||
frontend { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
port = 8080 | ||
directory = ${user.dir} | ||
command = [] | ||
stop-command = [] | ||
env-vars { | ||
} | ||
# If specified, will start a docker container, with the environment variable PORT set to the port above. | ||
docker-image = "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,20 @@ | ||
cloudstate-tck { | ||
#verify is a list of names of combinations to run for the TCK | ||
verify = [] | ||
#combinations is a list of config objects with a name, a proxy, and a frontend | ||
combinations = [] | ||
|
||
tck { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
port = 8090 | ||
} | ||
cloudstate.tck { | ||
hostname = "127.0.0.1" | ||
hostname = ${?TCK_HOST} | ||
port = 8090 | ||
port = ${?TCK_PORT} | ||
|
||
proxy { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
hostname = ${?TCK_PROXY_HOST} | ||
port = 9000 | ||
directory = ${user.dir} | ||
command = [] | ||
stop-command = [] | ||
env-vars { | ||
} | ||
# If specified, will start a docker container, with the environment variable USER_FUNCTION_HOST set to the host | ||
# to connect to, USER_FUNCTION_PORT set to the port to connect to, and HTTP_PORT set to the port above. | ||
docker-image = "" | ||
port = ${?TCK_PROXY_PORT} | ||
} | ||
|
||
frontend { | ||
hostname = "127.0.0.1" | ||
hostname = ${?HOST} | ||
hostname = ${?TCK_FRONTEND_HOST} | ||
port = 8080 | ||
directory = ${user.dir} | ||
command = [] | ||
stop-command = [] | ||
env-vars { | ||
} | ||
# If specified, will start a docker container, with the environment variable PORT set to the port above. | ||
docker-image = "" | ||
port = ${?TCK_FRONTEND_PORT} | ||
} | ||
} | ||
} |
Oops, something went wrong.