Skip to content

Instantly share code, notes, and snippets.

View todd-dsm's full-sized avatar
🏗️
Just trying stuff...

Todd Thomas todd-dsm

🏗️
Just trying stuff...
  • smpl-cloud
  • SoCal
View GitHub Profile
@todd-dsm
todd-dsm / override-values-all.yaml
Created December 13, 2021 21:15
vault values DEFAULT
---
csi:
daemonSet:
annotations: {}
kubeletRootDir: /var/lib/kubelet
providersDir: /etc/kubernetes/secrets-store-csi-providers
updateStrategy:
maxUnavailable: ""
type: RollingUpdate
debug: false
@todd-dsm
todd-dsm / override-values-ref.yaml
Created December 13, 2021 21:13
vault values REFERENCE
---
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
@todd-dsm
todd-dsm / encode-cert.sh
Last active September 13, 2021 20:18
base64 encode certificate; looking for a single line of output, not a block
#!/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
@todd-dsm
todd-dsm / tfenv.sh
Last active February 16, 2024 20:24
tfenv quick setup
# 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
---
@todd-dsm
todd-dsm / get-pipeline-info.sh
Created July 30, 2021 20:58
retrieves service account details from kubernetes for the GitLab pipeline
#!/usr/bin/env bash
#set -x
###----------------------------------------------------------------------------
### FUNCTIONS
###----------------------------------------------------------------------------
function pMsg() {
theMessage="$1"
printf '%s\n' "$theMessage"
}
@todd-dsm
todd-dsm / hosts
Created July 23, 2021 00:34
download this raw and drop into: ~/.ansible/hosts
# 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
@todd-dsm
todd-dsm / ansible.cfg
Created July 23, 2021 00:32
Ansible Config File; download raw to: ~/.ansible/ansible.cfg
# 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]
@todd-dsm
todd-dsm / main.go
Created July 5, 2021 21:05
stylistically which is most correct, cards or the letter d?
// 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)
}
}
@todd-dsm
todd-dsm / verify-helm-install.sh
Created June 6, 2021 22:47
checks to see if a service has been deployed to the cluster; if not, we install it.
#!/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:
@todd-dsm
todd-dsm / content.sh
Created May 6, 2021 17:51
conditionally find something in a file
#!/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