Role: Junior Developer Advocate
Employer: Exoscale
Location: Flexible; Berlin or Switzerland preferred
How to apply: Email your CV/resume and supporting information to [email protected]
Summary:
new BaseJobBuilder( | |
name: "operations-jira-restart", | |
description: "Restarts dev jira. To be used when Jira is not responding", | |
emails: ["[email protected]", "[email protected]"] | |
).build(this).with { | |
scm { | |
git("https://[redacted]/SoftwareDevelopment/operations-jenkins-automation.git", "master") | |
} | |
steps { | |
shell("fab restart_jira") |
Role: Junior Developer Advocate
Employer: Exoscale
Location: Flexible; Berlin or Switzerland preferred
How to apply: Email your CV/resume and supporting information to [email protected]
Summary:
Just run this from your Mac terminal and it'll drop you in a container with full permissions on the Docker VM. This also works for Docker for Windows for getting in Moby Linux VM (doesn't work for Windows Containers).
docker run -it --rm --privileged --pid=host justincormack/nsenter1
more info: https://github.com/justincormack/nsenter1
class SpecFile extends Specification { | |
def "Order delivery example test case"() { | |
given: | |
def product = createProduct() | |
expect: | |
retry { user pay product } waiting 500 upTo 3000 until { | |
it?.responseData?.status == "success" | |
} |
Prerequisite: latest Docker for Mac on MacOS Sierra
$ brew update
$ brew install --HEAD xhyve
$ brew install docker-machine-driver-xhyve
$ sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
$ sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/