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:
| # 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 | |
| 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" |
I hereby claim:
To claim this, I am signing this object:
| --- | |
| 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: |
| --- | |
| name: bosh-healthmonitor | |
| director_uuid: abc123 | |
| releases: | |
| - name: bosh | |
| version: '257.3' | |
| networks: | |
| - name: environment-mgmt | |
| subnets: | |
| - range: 10.0.0.0/24 |
| # 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: 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 |
| --- | |
| name: datadog-firehose-nozzle | |
| director_uuid: REPLACEME | |
| stemcells: | |
| - alias: bosh-openstack-kvm-ubuntu-trusty-go_agent-raw | |
| os: ubuntu-trusty | |
| version: '3263.15' | |
| instance_groups: | |
| - name: datadog-firehose-nozzle | |
| azs: [nova] |
| --- | |
| <%- environments = %W[ | |
| staging | |
| prod | |
| gap-cfsandbox-openstack | |
| gap-cfdev-openstack | |
| gap-cfprod-openstack | |
| tracker-aws | |
| ] -%> | |
| groups: |
| #!/usr/bin/env ruby | |
| require 'json' | |
| require 'pry' | |
| def cf_curl(resource, parameter='') | |
| response = JSON.parse `cf curl /v2/#{resource}?#{parameter}` | |
| raise "pagination" if response["total_pages"] && response["total_pages"] > 1 | |
| return response | |
| end |