Skip to content

Instantly share code, notes, and snippets.

View jldeen's full-sized avatar

Jessica Deen jldeen

View GitHub Profile
@jldeen
jldeen / tmux.conf
Created April 15, 2017 04:18
jldeen tmux conf
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
set -s escape-time 0
set -g xterm-keys on
@jldeen
jldeen / .zshrc
Last active April 15, 2017 04:20
jldeen zshrc
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/jessicadeen/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
# POWERLEVEL9K_MODE='awesome-fontconfig'
@jldeen
jldeen / kube-deploy-sp.parameters.json
Created February 16, 2018 21:19
AKS Service Principal Parameters
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dnsNamePrefix": {
"value": "<your value>"
},
"sshRSAPublicKey": {
"value": "<your value>"
},
"workbench.colorCustomizations": {
"terminal.foreground": "#839496",
"terminal.background": "#FFFFFF",
"terminal.ansiBlack": "#003541",
"terminal.ansiBlue": "#a0d7fe",
"terminal.ansiCyan": "#2aa198",
"terminal.ansiGreen": "#7cee30",
"terminal.ansiMagenta": "#d33682",
"terminal.ansiRed": "#dc322f",
"terminal.ansiWhite": "#eee8d5",
@jldeen
jldeen / kubecon_na.md
Last active December 30, 2019 11:28
KubeCon North America Kubernetes: Windows Apps with Draft and Helm
@jldeen
jldeen / DevOps2019.md
Last active January 29, 2019 22:59
DevOps_2019.md
@jldeen
jldeen / build19-superhero.md
Last active May 21, 2020 23:08
Build19 From Zero to DevOps Superhero

Microsoft, Linux, Open Source, Cloud + DevOps Demo Commands

Image Pull Secrets

  • kubectl create secret docker-registry secret-name-here --docker-server=docker-server-here --docker-username=username --docker-password=password --namespace=namespace
  • values: image: repository: registry-address-here/repo-name-here tag: tag-here pullPolicy: IfNotPresent imagePullSecrets:
@jldeen
jldeen / azStorage.sh
Last active September 19, 2019 21:58
#!/bin/bash
set -eou pipefail
# Change varaibles below as needed
rg=myresourcegroup
location=eastus
blobStoreName=jdh3
containerName=helm
helmRepoName=jdhelm
# End variable declaration