This file contains hidden or 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
from __future__ import unicode_literals | |
from time import sleep | |
import yaml | |
from kubernetes import client, config | |
from kubernetes.client.rest import ApiException | |
job_template = """ | |
apiVersion: batch/v1 |
This file contains hidden or 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
seleniumhub: | |
image: selenium/hub | |
ports: | |
- 4444:4444 | |
firefoxnode: | |
image: selenium/node-firefox | |
ports: | |
- 5900 | |
links: |