- RECON-371 — Fix Dashboard API Integration (P0 BLOCKER, 8 pts)
- RECON-472 — Replace Core Dashboard Mock Data Hook (CRITICAL, 13 pts)
- RECON-477 — Remove Enhanced Dashboard Mock Data (5 pts)
- RECON-465 — QA Test Report (blocked)
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 bash | |
| # This script generates a list of repos in a GitHub org. | |
| # The list can be pasted directly to a Microsoft Excel sheet. | |
| # You will need to use your GitHub username in the username field. | |
| # Update the page=N number to get the complete list of repos. | |
| curl --silent --user "username" "https://api.github.com/orgs/vmware/repos?page=1&per_page=100" | npx jq '.[].html_url' | while read repo | |
| do | |
| echo "=Hyperlink("$repo","$repo")" | |
| done |
2. Logging
Use a DaemonSet for Pods that need to run one per machine, because they provide a machine-specific system service.
Learning k8s basics
For example, to mark a node unschedulable, run this command:
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
| State | Abbreviation | |
|---|---|---|
| Alabama | AL | |
| Alaska | AK | |
| Arizona | AZ | |
| Arkansas | AR | |
| California | CA | |
| Colorado | CO | |
| Connecticut | CT | |
| Delaware | DE | |
| District of Columbia | DC |
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
| # See list of docker virtual machines on the local box | |
| $ docker-machine ls | |
| NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS | |
| default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1 | |
| # Note the host URL 192.168.99.100 - it will be used later! | |
| # Build an image from current folder under given image name | |
| $ docker build -t gleb/demo-app . |
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
| var amqp = require('amqplib/callback_api'); | |
| // if the connection is closed or fails to be established at all, we will reconnect | |
| var amqpConn = null; | |
| function start() { | |
| amqp.connect(process.env.CLOUDAMQP_URL + "?heartbeat=60", function(err, conn) { | |
| if (err) { | |
| console.error("[AMQP]", err.message); | |
| return setTimeout(start, 1000); | |
| } |
NewerOlder