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
# Enter these commands into the shell | |
# Minimally, you'll give a name and email address to begin: | |
git config --global user.name "fName lName" | |
git config --global user.email "[email protected]" | |
git config --global core.editor vim | |
git config --global color.ui true | |
git config --global push.default matching | |
# Dump logs to stdOut and add an alias to see them in reverse: |
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
#------------------------------------------------------------------------------ | |
# FUNCTION: First, nobody should do this. Second, it totally works. This is a | |
# library to print messages in a consistent format. | |
# AUTHORS: todd-dsm | |
#------------------------------------------------------------------------------ | |
###---------------------------------------------------------------------------- | |
### VARIABLES | |
###---------------------------------------------------------------------------- |
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
# ssh-keygen -t rsa -b 4096 -f /tmp/id_rsa -C "disposable key" | |
-----BEGIN OPENSSH PRIVATE KEY----- | |
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAACFwAAAAdzc2gtcn | |
NhAAAAAwEAAQAAAgEA6CVApa/seMAN7yh4yg3hOuRdgmAxbx5qgrE0VZ63/nzKTRZtz3Co | |
lpmMg9tvRhQa+RKJRNh4Bs1Gn3gvSlxSzRD+c8C6fpTSdB4hcx7QvnI85FQWLvIIjHPIj3 | |
yf58xjz212WscwfsDVXyjUaYx6JfnG+Z/JuVG6MwYVPAGpQn5xHkEtfo69LWWx3ohNQrJH | |
0M7gUiki+2mi08Jn+fpgXgGJmyLPEI5luy3jlNTmONu9lkA42fLYJyKQHn2jYtaKgyJSyW | |
kmfLuJhlBQ3kLP2eJ/UjY5954628ARaLkr3fEF7OVVtnIrZUzlQKCwlGh+4jnPnauoui5P | |
vHcgpwpilBKglMo58al6ADtGo5X2ju+/KLcVHRXO8FvrK6OLNZlJ8cQwSAzWWsKNYj4GnA | |
F1RUT/3tXXHANQkeLoKF9E/DXchIjJfeKADCR8kbQ2zvzi73weyhhqdDbi3K3s8SEXbOly |
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
# This is a fully-formed GitLab Pipeline using Auto DevOps: | |
# Location: root of the code repo: .gitlab/auto-deploy-values.yaml | |
# https://docs.gitlab.com/ee/topics/autodevops/#features | |
name: my-service | |
replicaCount: 3 | |
strategyType: | |
enableSelector: | |
deploymentApiVersion: apps/v1 | |
image: | |
repository: gitlab.com/myGroup/myProject/my-service |
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
# ----------------------------------------------------------------------------- | |
# Kubernetes Cluster for Applications | |
# ----------------------------------------------------------------------------- | |
# Networking: VPC | |
# https://registry.terraform.io/modules/cloudposse/vpc/aws/latest | |
# ----------------------------------------------------------------------------- | |
module "apps_vpc" { | |
source = "cloudposse/vpc/aws" | |
version = "0.18.0" | |
namespace = var.myCo |
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
{ | |
"KEY1": "value1", | |
"KEY2": "value2", | |
"KEY3": "value3" | |
} |
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
# Vault Helm Chart Value Overrides | |
global: | |
enabled: true | |
tlsDisable: true | |
# Create PodSecurityPolicy for pods | |
psp: | |
enable: false | |
# Annotation for PodSecurityPolicy. | |
# This is a multi-line templated string map, and can also be set as YAML. | |
annotations: | |
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
Oct 31 19:57:04 wfma-dev sshd[11583]: Accepted publickey for userName from aaa.bbb.ccc.ddd port 55305 ssh2: RSA SHA256:xbm3DZ4C0XNIaxD/dRLN/g0v/eZOl9vVIXFYYwgFVd0 | |
Oct 31 19:57:04 wfma-dev systemd-logind[2852]: New session 6816 of user userName. | |
Oct 31 19:57:04 wfma-dev systemd[1]: Started Session 6816 of user userName. | |
Oct 31 19:57:04 wfma-dev systemd[1]: Starting Session 6816 of user userName. | |
Oct 31 19:57:04 wfma-dev sshd[11583]: pam_unix(sshd:session): session opened for user userName by (uid=0) |
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
# DO NOT UNCOMMENT THIS | |
#Host * | |
# UseKeychain yes | |
# AddKeysToAgent yes | |
# IdentityFile ~/.ssh/id_rsa | |
# StrictHostKeyChecking no | |
## Personal GitHub account | |
Host github.com | |
HostName github.com |
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
# Vault Helm Chart Value Overrides | |
global: | |
enabled: true | |
tlsDisable: false | |
#injector: | |
# enabled: true | |
# # Use the Enterprise Image | |
# image: | |
# repository: "hashicorp/vault-enterprise" |