Candidate: | Kevin Faulkner |
---|---|
Address: | 6921 Ashbury Dr Springfield, VA USA 22152 |
Phone: | 1-480-440-6353 |
email: | [email protected] |
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
" Vimrc | |
" | Action | Emacs | Vim | | |
" |--------------------------------:|:--------------:|:------------------------| | |
" |undo (nano: M-U) | C-_ | u | | |
" |redo (nano: M-E) | C-_ (note) | C-r | | |
" |save (nano: C-x) | C-x C-s | :w | | |
" |quit (abort) (nano: C-x) | C-x C-c | :q! | | |
" |search (nano: C-/) | C-s | / | | |
" |replace (nano: C-/) | Esc % (dialog) | :%s/paittern/pattern/g | | |
" |insert | i (or) I | | |
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
bad | |
cannot | |
can't | |
critical | |
declined | |
denied | |
doesn't | |
end of | |
error | |
fail |
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
mkdir .ssh/ | |
chmod 700 .ssh | |
chmod 600 ~/.ssh/authorized_keys | |
## Root | |
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm | |
yum install -y yum-utils | |
cat <<EOF > /etc/yum.repos.d/kubernetes.repo | |
[kubernetes] | |
name=Kubernetes |
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
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: coredns | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRole | |
metadata: | |
labels: |
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
# SCAP Security Guide profile kickstart for Red Hat Enterprise Linux 7 Server | |
# Version: 0.0.2 | |
# Date: 2015-08-02 | |
# | |
# Based on: | |
# http://fedoraproject.org/wiki/Anaconda/Kickstart | |
# https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Installation_Guide/sect-kickstart-syntax.html | |
# http://usgcb.nist.gov/usgcb/content/configuration/workstation-ks.cfg | |
# Install a fresh new system (optional) |
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
#version=DEVEL | |
# System authorization information | |
auth --enableshadow --passalgo=sha512 | |
text | |
skipx | |
ignoredisk --only-use=sda | |
keyboard --vckeymap=us --xlayouts='us' | |
lang en_US.UTF-8 | |
firstboot --disable | |
timezone America/New_York |
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
#version=DEVEL | |
# System authorization information | |
auth --enableshadow --passalgo=sha512 | |
install | |
text | |
skipx | |
ignoredisk --only-use=nvme0n1 | |
keyboard --vckeymap=us --xlayouts='us' | |
lang en_US.UTF-8 | |
firstboot --disable |
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
#version=DEVEL | |
# System authorization information | |
auth --enableshadow --passalgo=sha512 | |
install | |
text | |
skipx | |
firstboot --disable | |
keyboard --vckeymap=us --xlayouts='us' | |
lang en_US.UTF-8 | |
timezone America/New_York --isUtc |
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
// thrown together (yes, its ugly) by kevin faulkner, if you use/modify it or want help, let me know | |
// under some kind of BSD license, just note original author so that I can meet more people that like doing this Linux stuff :-) | |
package main | |
import ( | |
"bytes" | |
"database/sql" | |
"encoding/json" | |
"log" |