tmux windows should have the following environment variable to read from a forwarded (ssh -A
) agent:
export SSH_AUTH_SOCK=/Users/${USER}/.ssh/ssh_auth_sock.local
For example:
SSH_AUTH_SOCK=/Users/pivotal/.ssh/ssh_auth_sock.local
tmux windows should have the following environment variable to read from a forwarded (ssh -A
) agent:
export SSH_AUTH_SOCK=/Users/${USER}/.ssh/ssh_auth_sock.local
For example:
SSH_AUTH_SOCK=/Users/pivotal/.ssh/ssh_auth_sock.local
--- | |
resource_types: [] | |
resources: [] | |
jobs: | |
- name: sample-job | |
plan: | |
- task: sample-task | |
config: | |
platform: linux | |
image_resource: |
## Type Conversion | |
runtime, will panic if things go awry | |
whatever.(TYPE) | |
both whatever and type need to be an interface | |
compile time, mnust be compile-time verifiable | |
type(whatever) | |
Firstly, modify the ginkgo execution params to include:
-nodes=1 \ # no parallel
-seed=9 \ # always use same seed
-dryRun \ # really?
-v \ # verbose
--noColor \# remove ugly terminal color output
--succinct # idk what this does but it makes it smaller
############# | |
# Resources # | |
############# | |
# Active Health Monitors | |
resource "nsxt_lb_http_monitor" "lb_web_monitor" { | |
description = "The Active Health Monitor (healthcheck) for Web (HTTP(S)) traffic." | |
display_name = "${var.nsxt_lb_web_monitor_name}" | |
monitor_port = 8080 | |
request_method = "GET" | |
request_url = "/health" |
#!/usr/bin/env bash | |
# NOTE: | |
# "It's not a backup, and it's not a complete NSX-T configuration" | |
# This shell-script hits the NSX-T API to download the configuration | |
# of small subset of the NSX-T infrastructure changed by the | |
# NCP (NSX-T tile) agent. | |
# |
# install cmd | |
xargs -a packages.txt sudo apt-get install | |
# Packages that need extra/non-package manager setup | |
adobe-source-code-pro-fonts | |
[ -d /usr/share/fonts/opentype ] || sudo mkdir /usr/share/fonts/opentype | |
sudo git clone https://github.com/adobe-fonts/source-code-pro.git /usr/share/fonts/opentype/scp | |
sudo fc-cache -f -v | |
chruby && ruby-install |
#! /bin/bash | |
set -eux | |
tmpdir=$(mktemp -d) | |
pushd "$tmpdir" || return | |
git init |