- Get root:
ssh pi-k3s-master.local -t sudo su
- Find your disk via
fdisk -l
(e.g. /dev/sda1) - Erase drive by repartitioning:
mkfs.ext4 /dev/sda1
- Mount drive:
mkdir /mnt/pi-k3s-storage chown -R ericboehs:ericboehs /mnt/pi-k3s-storage mount /dev/sda1 /mnt/pi-k3s-storage
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
KNOWN_EXAMPLE_FILE_PATH_LN = [ | |
'./spec/services/form1010cg/auditor_spec.rb:301', | |
'./spec/lib/common/exceptions/detailed_schema_errors_spec.rb:223', | |
'./spec/jobs/va_notify_email_job_spec.rb:18', | |
'./spec/controllers/v0/caregivers_assistance_claims_controller_spec.rb:49', | |
'./spec/controllers/v0/caregivers_assistance_claims_controller_spec.rb:25', | |
'./spec/requests/v0/form1010cg/attachments_request_spec.rb:74', | |
'./spec/requests/v0/form1010cg/attachments_request_spec.rb:49', | |
'./spec/controllers/inherited_proofing_controller_spec.rb:195', | |
'./spec/controllers/v1/sessions_controller_spec.rb:421', |
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
require 'uri' | |
require 'net/http' | |
url = URI.parse 'http://localhost:9292/' | |
request = Net::HTTP::Get.new url.path | |
response = Net::HTTP.start(url.host, url.port) do |http| | |
http.read_timeout = 2 | |
http.request request | |
end |
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 ruby | |
require 'json' | |
require 'net/http' | |
class GQLBuilder | |
attr_reader :mutations, :queries, :result | |
def initialize | |
@mutations = [] |
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
{ | |
"form1[0].#subform[0].veteranLastName[0]": "<%= data['veteranFullName']['last'] %>", | |
"form1[0].#subform[0].veteranFirstName[0]": "<%= data['veteranFullName']['first'] %>", | |
"form1[0].#subform[0].veteranMiddleInitial[0]": "<%= data['veteranFullName']['middle'] %>", | |
"form1[0].#subform[0].veteranSocialSecurityNumber[0]": "<%= data['veteranSocialSecurityNumber'] %>", | |
"form1[0].#subform[0].VAfileNumber[0]": "<%= data['vaFileNumber'] %>", | |
"form1[0].#subform[0].applicantLastName2[0]": "<%= data['applicant1']['last'] %>", | |
"form1[0].#subform[0].applicantFirstName2[0]": "<%= data['applicant1']['first'] %>", | |
"form1[0].#subform[0].veteranDateOfBirth[0]": "<%= data['vet']['dob'] %>", | |
"form1[0].#subform[0].veteranTelephoneNumber[0]": "<%= data['sponsorPhone'] %>", |
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
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'zenhub_ruby', github: 'Reddshift/zenhub_ruby' | |
gem 'octokit' | |
gem 'pry' | |
end | |
require 'json' |
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 zsh | |
# Variables | |
DATE_COMPARISON_OPERATOR=${DATE_COMPARISON_OPERATOR-<} | |
REPO_URL=${REPO_URL-$(gh browse -n)} | |
# Set generating command | |
GENERATING_COMMAND='stale-branches' | |
if [ "$DATE_COMPARISON_OPERATOR" = ">" ]; then |
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
t.prefs_.set('color-palette-overrides',["#333333", "#be4943", "#64cb38", "#969829", "#2350a1", "#aa25b7", "#4796b9", "#cccccc", "#000000", "#bb3f39", "#64cb38", "#b7ba34", "#2350a1", "#aa25b7", "#4796b9", "#ffffff"]); | |
t.prefs_.set('foreground-color', "#25292e"); | |
t.prefs_.set('background-color', "#ffffff"); | |
t.prefs_.set('cursor-color', 'rgba(4,66,137,0.5)'); |
Estimated time needed: one hour. And then several more hours to have fun with it.
Go through this section for all of your Raspberry Pis (master and nodes).
- Install Raspberry Pi OS 64-bit Lite onto an SD card using Raspberry Pi's Imager.
- In the imager options, I configured hostname, ssh, username, but not Wi-Fi. Setting up Wi-Fi disables ethernet.
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 ruby | |
# https://gist.github.com/ericboehs/d1a88345ac526eb9851ff41155adc3bc | |
require 'open-uri' | |
require 'json' | |
BOLD = `tput bold` | |
NORMAL = `tput sgr0` | |
def print_all_schedules_names_and_ids |