Pull Requests | Ordered Oldest to Newest
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 debian:latest | |
| RUN apt-get update | |
| RUN apt-get -y install iceweasel | |
| ENV DISPLAY :0 | |
| CMD iceweasel |
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
| """ | |
| Title: make-it-fit.py | |
| Description: Transforms a very specific csv into a very specific json format | |
| Owner: Elijah C. Voigt <elijah.caine@coreos.com> | |
| Usage: ``python make-it-fit.py > my-output-file.json`` | |
| CSV Format: ``Timestamp(optional),Name (First and Last),Start date at CoreOS,End date at CoreOS(optional),Github handle,Primary Coreos email,Other emails used for commits(optional)`` | |
| CSV Example Line: ``1/10/2016 12:00:00,Foo Bazington,1/10/2016,1/10/2017,bazington84,foo.bazington@coreos.com,foobazington@someschool.edu,foobazington@yahoo.net`` | |
| """ | |
| import json | |
| import datetime |
I'm trying to deploy buildbot on kubernetes because:
- I couldn't find anybod else that had done it.
- I wanted to learn how to deploy something more complicated than Nginx
- It looked like good blogpost material.
I found https://docs.buildbot.net/current/tutorial/docker.html and specifically https://github.com/buildbot/buildbot-docker-example-config. It's a docker-compose config which I'm trying to map to a K8s setup.
On Minikube I got a few things working:
That thing you're not using that you really should.
TLDR The process of telling a computer to run your software tests, builds, and anything else a computer can do automagically.
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 debian:latest | |
| RUN apt update -y | |
| RUN apt install -y texlive-latex-recommended | |
| RUN apt install -y biber | |
| RUN apt install -y texlive-latex-extra | |
| WORKDIR /opt | |
| CMD ["/opt/build.sh"] |
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
| #!/bin/sh | |
| # Put this script in your path. | |
| # Add this line to your .bashrc: | |
| # alias workon='. workon.sh' | |
| PROJECTS_DIR="${PROJECTS_DIR:-$HOME/Source}" | |
| DEPTH="${DEPTH:-6}" | |
| goto_dir () { | |
| d=`find $PROJECTS_DIR -maxdepth $DEPTH -name $1` | |
| if [ ! -z $d ]; then |
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
| #!/bin/sh | |
| # Add this file to a direcotry in your $PATH | |
| # Add the following line to your .bashrc: | |
| # alias sd='. /path/to/sd.sh' | |
| cat_todo() { | |
| cat `ls {,.}{todo,TODO}* 2>/dev/null` | |
| } | |
| if [ $# -eq 1 ]; |
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
| #!/bin/sh | |
| # | |
| # Script: notes.sh | |
| # Author: Elijah C. M. Voigt | |
| # License: MIT | |
| # | |
| # Installation: | |
| # Add this to your path, make it executable, and add this line to your ${SHELL}rc | |
| # alias notes='. notes.sh' | |
| # That will add the command `notes` to your shell. |