I hereby claim:
- I am jim80net on github.
- I am jim80net (https://keybase.io/jim80net) on keybase.
- I have a public key whose fingerprint is 410A 85A6 D549 CE8F EA6C 14F7 964A DB9D A2C7 7CE9
To claim this, I am signing this object:
| --- | |
| name: bosh-healthmonitor | |
| director_uuid: REPLACEME | |
| releases: | |
| - name: bosh | |
| version: 257.3+dev.3 | |
| - name: loggregator | |
| version: 72 | |
| url: https://bosh.io/d/github.com/cloudfoundry/loggregator?v=72 | |
| sha1: 33320d62745c80ea0b7320547443883d9cc29362 |
| # CF <= v245 | |
| USE ccdb; | |
| SELECT | |
| apps.id AS AppID, | |
| apps.name AS AppName, | |
| apps.guid AS AppGUID, | |
| apps.state AS AppState, | |
| routes.id AS RouteID, | |
| routes.host as RouteHost, | |
| routes.path AS RoutePath, |
| --- | |
| name: bosh-healthmonitor | |
| director_uuid: abc123 | |
| releases: | |
| - name: bosh | |
| version: '257.3' | |
| networks: | |
| - name: environment-mgmt | |
| subnets: | |
| - range: 10.0.0.0/24 |
| --- | |
| compilation: | |
| cloud_properties: | |
| availability_zone: nova | |
| instance_type: m1.medium | |
| network: datadog-firehose-nozzle-net | |
| reuse_compilation_vms: true | |
| workers: 1 | |
| director_uuid: REDACTED | |
| jobs: |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| function USAGE() { | |
| echo "Usage: make_fast_storage.sh <storage_account_name>" | |
| echo "Note: Should be logged into the Azure CLI before running" | |
| echo "STDIN: none expected" | |
| echo "STDOUT: Azure CLI output" | |
| echo "STDERR: Azure CLI errput" | |
| } | |
| AZURE_REGION="southcentralus" |
| # Here's the script I'll use to demonstrate - it just loops forever: | |
| $ cat test.rb | |
| #!/usr/bin/env ruby | |
| loop do | |
| sleep 1 | |
| end | |
| # Now, I'll start the script in the background, and redirect stdout and stderr |
| #!/bin/bash | |
| JOB_NAME=app | |
| RUN_DIR=/var/vcap/sys/run/$JOB_NAME | |
| LOG_DIR=/var/vcap/sys/log/$JOB_NAME | |
| CONFIG_DIR=/var/vcap/jobs/$JOB_NAME/config | |
| EPHEMERAL=/var/vcap/data/$JOB_NAME | |
| PERSISTENT=/var/vcap/store/$JOB_NAME | |
| PIDFILE=$RUN_DIR/$JOB_NAME.pid | |
| RUNAS=vcap |
| #!/usr/bin/env ruby | |
| # Usage: ./download_scripts_and_templates <repo> <ref> | |
| # Output: Directory of download | |
| require 'bundler/setup' | |
| require 'logger' | |
| require 'octokit' | |
| require 'base64' | |
| def prereqs |
| function aws_who_am_i_usage() { | |
| printf " | |
| aws_who_am_i | |
| - with no args: who is the user that the ENV currently refers to (AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY / AWS_DEFAULT_REGION) | |
| - with 1 arg: provide a filename that can be sourced that has the above environment variables | |
| - with 2 args: aws_who_am_i AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY | |
| " | |
| } | |
| function aws_who_am_i() { |