Skip to content

Instantly share code, notes, and snippets.

@tlwr
Last active February 5, 2019 14:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlwr/eab73367dcd92a1e6a1f65e1c9d7b48c to your computer and use it in GitHub Desktop.
Save tlwr/eab73367dcd92a1e6a1f65e1c9d7b48c to your computer and use it in GitHub Desktop.
Filthy selenium in Fargate
[
{
"cpu": 2,
"essential": true,
"image": "selenium/hub:3.141.59-fluorine",
"name": "selenium",
"portMappings": [
{
"containerPort": 4444,
"hostPort": 4444
}
],
"environment": [{
"Name": "GRID_TIMEOUT",
"Value": "30"
}, {
"Name": "GRID_BROWSER_TIMEOUT",
"Value": "60"
}, {
"Name": "GRID_MAX_SESSION",
"Value": "5"
}]
}, {
"cpu": 1,
"essential": true,
"image": "selenium/node-firefox:3.141.59-fluorine",
"name": "selenium-node-1",
"portMappings": [],
"environment": [{
"Name": "HUB_HOST",
"Value": "localhost"
}, {
"Name": "HUB_PORT",
"Value": "4444"
}, {
"Name": "NODE_PORT",
"Value": "5555"
}, {
"Name": "NODE_MAX_SESSION",
"Value": "5"
}, {
"Name": "NODE_MAX_INSTANCES",
"Value": "5"
}]
}, {
"cpu": 1,
"essential": true,
"image": "selenium/node-firefox:3.141.59-fluorine",
"name": "selenium-node-2",
"portMappings": [],
"environment": [{
"Name": "HUB_HOST",
"Value": "localhost"
}, {
"Name": "HUB_PORT",
"Value": "4444"
}, {
"Name": "NODE_PORT",
"Value": "5556"
}, {
"Name": "NODE_MAX_SESSION",
"Value": "5"
}, {
"Name": "NODE_MAX_INSTANCES",
"Value": "5"
}]
}, {
"cpu": 1,
"essential": true,
"image": "selenium/node-firefox:3.141.59-fluorine",
"name": "selenium-node-3",
"portMappings": [],
"environment": [{
"Name": "HUB_HOST",
"Value": "localhost"
}, {
"Name": "HUB_PORT",
"Value": "4444"
}, {
"Name": "NODE_PORT",
"Value": "5557"
}, {
"Name": "NODE_MAX_SESSION",
"Value": "5"
}, {
"Name": "NODE_MAX_INSTANCES",
"Value": "5"
}]
}, {
"cpu": 1,
"essential": true,
"image": "selenium/node-firefox:3.141.59-fluorine",
"name": "selenium-node-4",
"portMappings": [],
"environment": [{
"Name": "HUB_HOST",
"Value": "localhost"
}, {
"Name": "HUB_PORT",
"Value": "4444"
}, {
"Name": "NODE_PORT",
"Value": "5558"
}, {
"Name": "NODE_MAX_SESSION",
"Value": "5"
}, {
"Name": "NODE_MAX_INSTANCES",
"Value": "5"
}]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment