Skip to content

Crazybus/lope

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lope

Build Status

Abuse docker as a development and testing environment that works (almost) identically across Linux/OSX/Windows. It creates a docker image with your current working directory and forwards environment variables/secrets/ssh agents so that you can run tooling and tests within a docker container with minimal boilerplate.

Why

It is 2018 and it is still hard to support running tooling across different operating systems in a consistent way. Having a single way to run pinned versions of tooling such as Ansible for local development and CI environments without needing to install and manage that particular tools equivalent of python virtualenvs.

Lope is an attempt to make a more structured version of this bash one liner with support for more advanced patterns like ssh forwarding:

docker run --entrypoint=/bin/sh $(env | grep ^AWS | awk -F= '{ print "--env " $1; }' | tr "\n" ' ') --rm -i -v $(pwd):/app -w /app --user=$(id -u):$(id -g) hashicorp/terraform:${TERRAFORM_VERSION} -c "terraform plan"

With lope:

lope hashicorp/terraform:${TERRAFORM_VERSION} terraform plan

With .lope.yml file (not yet implemented):

image: hashicorp/terraform:${TERRAFORM_VERSION}
command: terraform plan
env:
  - ^AWS

Design goals

  • Docker is the only dependency needed for developing/testing/deploying
  • Defaults which favour usability over speed and security while still having configuration options available to restrict which environment variables/secrets are forwarded into containers for proper usage.
  • All actions are immutable. All files and dependencies are added to a docker image before running. This means no local state is modified and the state inside the container is static during its lifetime. This makes it possible to run something like ansible-playbook and then immediately switch to a different branch and continue to make changes.
  • Testing and tooling should be run the same in development and CI environments

Usage

$ lope
Usage of lope:
  lope [options] <docker-image> <command>

Options:
  -addDocker
    	Uses wget to download the docker client binary into the image
  -addMount
    	Setting this will add the directory into the image instead of mounting it
  -arg value
    	Extra docker run arguments which will be appended to the docker run command. Can be specified multiple times
  -blacklist string
    	Comma seperated list of environment variables that will be ignored by lope (default "HOME,SSH_AUTH_SOCK,TMPDIR,PATH")
  -cmdProxy
    	Starts a server that the lope container can use to run commands on the host
  -cmdProxyPort string
    	Listening port that will be used for the lope command proxy (default "24242")
  -dir string
    	The directory that will be mounted into the container. Defaut is current working directory (default "/Users/mick/pro/lope")
  -dockerSocket string
    	Path to the docker socket (default "/var/run/docker.sock")
  -entrypoint string
    	The entrypoint for running the lope command (default "/bin/sh")
  -instruction value
    	Extra docker image instructions to run when building the image. Can be specified multiple times
  -noDocker
    	Disables mounting the docker socket inside the container
  -noMount
    	Disable mounting the current working directory into the image
  -noRoot
    	Use current user instead of the root user
  -noTty
    	Disable the --tty flag (needed for CI systems)
  -path value
    	Paths that will be mounted from the users home directory into lope. Path will be ignored if it isn't accessible. Can be specified multiple times
  -ssh
    	Enable forwarding ssh agent into the container
  -whitelist string
    	Comma seperated list of environment variables that will be be included by lope
  -workDir string
    	The default working directory for the docker image (default "/lope")

Examples

Usage: lope [<flags>] <docker image> <commands go here>

Run lope -help for all command line flags.

$ lope alpine ls
README.md
lope
lope.go
$ lope alpine cat /etc/issue
Welcome to Alpine Linux 3.7 Kernel \r on an \m (\l)

Attach into the container for some interactive debugging fun

$ lope alpine sh
/lope #

Mounts ~/.vault-token and forwards VAULT_ADDR environment variable

$ lope vault vault read secret/test/hellope
Key                 Value
---                 -----
refresh_interval    768h
value               world

Mounts ~/.kube/ for easy kubectl access

$ lope lachlanevenson/k8s-kubectl kubectl get pods
NAME                    READY     STATUS    RESTARTS   AGE
nginx-7c87f569d-5zvx4   1/1       Running   0          13s

Mounts the docker socket

$ lope docker docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS                  PORTS               NAMES
b4b7bf56655b        lope                "/bin/sh -c 'docker …"   1 second ago        Up Less than a second                       elegant_lalande

Automagically forwards your ssh agent into the container (even on OSX!)

$ lope -ssh alpine/git ssh -T git@github.com
Hi Crazybus! You've successfully authenticated, but GitHub does not provide shell access.

Start a web server and connect to it from another lope command

$ lope python python3 -m http.server
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

# In another terminal
$ lope python curl -I localhost:8000
HTTP/1.0 200 OK
Server: SimpleHTTP/0.6 Python/3.6.5
Date: Sat, 02 Jun 2018 19:42:42 GMT
Content-type: text/html; charset=ascii
Content-Length: 764

Run the unit tests for phpunit

$ lope composer 'composer install && ./phpunit'
OK, but incomplete, skipped, or risky tests!
Tests: 1857, Assertions: 3206, Skipped: 13.

Add docker client to a random docker image (requires wget to be in the image)

$ lope -addDocker alpine docker ps
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS                  PORTS                   NAMES
bf8d6885a2de        lope                            "/bin/sh -c 'docker …"   1 second ago        Up Less than a second                           elegant_villani

Run the kitchen docker tests for the ansible role ansible-elasticsearch

lope -workDir /elasticsearch -addDocker ruby:2.3-onbuild make verify

What just happened?

  • -workDir /lope/elasticsearch set the current working directory to start with elasticsearch since the role name needs to match the parent directory
  • -addDocker automatically downloaded the docker client binary into the image so we can run docker commands
  • The ruby:2.3-onbuild docker image automatically installed all of the ruby depdencies of test kitchen with bundler

What else did lope do?

  • Bind mounted the current directory into the image. This means state is persisted and we can run test kitchen multiple times
  • Mounted the docker socket into the container so docker works
  • Set the networking to host (--net=host) so that test kitchen can connect to the started hosts via ssh

Run ansible against a host that uses ssh to authenticate

$ lope -ssh williamyeh/ansible:alpine3 ansible all -i 'lope-host,' -m shell -a 'hostname'
lope-host | SUCCESS | rc=0 >>
debian-9

Installation

Point your browser to the releases page: Latest Release and download the precompiled binary for your system.

Compile it yourself

If you feel the need to compile it yourself, you will need golang installed. Run something like this:

go get github.com/Crazybus/lope
go build github.com/Crazybus/lope
cp $GOPATH/github.com/Crazybus/lope/lope /usr/local/bin

Features

Planned

  • Get vagrant/virtualbox combo working
  • Make sure all images/names are unique so multiple lopes can be run at the same time
  • If using addMount add all .dot directories instead of mounting them
  • Automatically expose ports from Dockerfile
  • Add yaml file to define configuration instead of doing a big one liner
  • Add option in yaml file to specify mounted files
  • Add yaml file option to include/exclude environment variables with pattern support
  • Allow running multiple images/commands combos with stages
  • Allow sharing artifacts/files between stages
  • Add default .dockerignore for things like .git and .vagrant

Done

  • Add support for attaching into container for debugging
  • Use host network by default so containers can talk to localhost and other containers
  • Write output in realtime
  • Run a docker container with current directory added
  • Forward all environment variables into the container
  • Add blacklist and whitelist regexes to filter environment variables
  • Mount secret files and directories into the container (like ~/.vault-token)
  • Automatically add well known locations for secrets for development usage
  • Add simple build step options. E.g. alpine as base image with a single RUN apk add package.
  • Add option to use bind mounts for adding the current working directory. Also allow disabling mounting current directory altogether for use cases like vault status
  • Add command line flags
  • Mount the docker socket into the container
  • Automated ssh agent forwarding for OSX. https://github.com/uber-common/docker-ssh-agent-forward
  • Run as current user and group when bind mounting
  • Add option to specify custom docker flags

About

Lope abuses docker as a development and testing environment that works (almost) identically across Linux/OSX/Windows

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages