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
--- | |
csi: | |
daemonSet: | |
annotations: {} | |
kubeletRootDir: /var/lib/kubelet | |
providersDir: /etc/kubernetes/secrets-store-csi-providers | |
updateStrategy: | |
maxUnavailable: "" | |
type: RollingUpdate | |
debug: false |
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
--- | |
global: | |
enabled: true | |
psp: | |
annotations: | | |
seccomp.security.alpha.kubernetes.io/allowedProfileNames: docker/default,runtime/default | |
apparmor.security.beta.kubernetes.io/allowedProfileNames: runtime/default | |
seccomp.security.alpha.kubernetes.io/defaultProfileName: runtime/default | |
apparmor.security.beta.kubernetes.io/defaultProfileName: runtime/default | |
enable: false |
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
#!/usr/bin/env bash | |
{ IFS= read -rd '' secretMaterial <'foo-api.pem';} 2>/dev/null | |
myEncodedCert="$(echo -n "$secretMaterial" | base64)" | |
echo "$myEncodedCert" | |
myEncodedCert is displayed in a text block. I need it in a flat line as the "Target" at the bottom. | |
--- | |
OUTPUT: Actual |
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
# If EXISTING install start here | |
# Dump the current Terraform binary | |
brew unlink terraform | |
brew uninstall terraform | |
# If NEW install start here | |
# Install tfenv | |
brew install tfenv | |
--- |
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
#!/usr/bin/env bash | |
#set -x | |
###---------------------------------------------------------------------------- | |
### FUNCTIONS | |
###---------------------------------------------------------------------------- | |
function pMsg() { | |
theMessage="$1" | |
printf '%s\n' "$theMessage" | |
} |
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 the default ansible 'hosts' file. | |
# | |
# It should live in /etc/ansible/hosts | |
# | |
# - Comments begin with the '#' character | |
# - Blank lines are ignored | |
# - Groups of hosts are delimited by [header] elements | |
# - You can enter hostnames or ip addresses | |
# - A hostname/ip can be a member of multiple groups |
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
# config file for ansible -- http://ansible.com/ | |
# ============================================== | |
# nearly all parameters can be overridden in ansible-playbook | |
# or with command line flags. ansible will read ANSIBLE_CONFIG, | |
# ansible.cfg in the current working directory, .ansible.cfg in | |
# the home directory or /etc/ansible/ansible.cfg, whichever it | |
# finds first | |
[defaults] |
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
// create a 'reciever' function | |
// this construct establishes methods on the variables we create | |
//----------------------------------------------------------------------------- | |
// 'cards' is a reference to the main.go/main variable: (presently instantiated) cards | |
func (cards deck) print() { | |
for index, card := range cards { | |
fmt.Println(index, card) | |
} | |
} |
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
#!/usr/bin/env bash | |
# PURPOSE: Given a repo and chart name this script will check to see if the | |
# chart is installed, if not it installs the chart, else it will | |
# display Helm deployment info. | |
# ----------------------------------------------------------------------------- | |
# PREREQS: a) Helm is installed | |
# b) The target repo has been added | |
# c) | |
# ----------------------------------------------------------------------------- | |
# EXECUTE: |
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
#!/usr/bin/env bash | |
myFile='/tmp/file.yaml' | |
if ! grep thing $myFile; then | |
echo "adding thing!" | |
# code to add thing | |
else | |
echo "thing already exists" # no-op, report only | |
fi |