Scroll all the way down for more resources
This file contains 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
# 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 |
This file contains 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
# 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' |
This file contains 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
{ | |
"$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>" | |
}, |
This file contains 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
"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", |
Scroll all the way down for more resources
- 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:
This file contains 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/bash | |
set -eou pipefail | |
# Change varaibles below as needed | |
rg=myresourcegroup | |
location=eastus | |
blobStoreName=jdh3 | |
containerName=helm | |
helmRepoName=jdhelm | |
# End variable declaration |
OlderNewer