Skip to content

Instantly share code, notes, and snippets.

@corydodt
corydodt / nginx-ingress-values.yaml
Created September 11, 2017 16:25
Values file for using helm with nginx-ingress on AWS
## nginx configuration
## Ref: https://github.com/kubernetes/ingress/blob/master/controllers/nginx/configuration.md
##
controller:
name: controller
image:
repository: gcr.io/google_containers/nginx-ingress-controller
tag: "0.9.0-beta.12"
config:
@corydodt
corydodt / pizzacart.html
Last active January 2, 2016 13:18
pizza code
"use strict";
var pizzaApp = angular.module("pizzaApp", []);
pizzaApp.controller('PizzaCtrl', function _a_PizzaCtrl($scope) {
$scope.ingredients = ['pepperoni', 'sausage', 'anchovies', 'olives', 'onions'];
$scope.addIngredient = function _a_addIngredient() {
if ($scope.form.newIngredient.length > 0) {
$scope.ingredients.push($scope.form.newIngredient);
@corydodt
corydodt / coryshell
Last active December 30, 2015 15:19
To use: bash <(curl -L -s http://is.gd/coryshell)
#!/bin/bash
set -e
sudo apt-get install -y git make
git clone https://github.com/corydodt/Personal.git
cd Personal
make shell
===================
Brightfab gist repo
===================
This is the fabric code for managing Brightmd's developer automation.
It bootstraps all dependencies and code into the current directory, under Brightmd/ then moves itself into that directory.
**Note** It is not possible to create directories in a gist.