Skip to content

Commit 31de747

Browse files
committed
Address Markdown lint errors
Signed-off-by: Jason Heath <[email protected]>
1 parent fb39fb6 commit 31de747

File tree

11 files changed

+113
-88
lines changed

11 files changed

+113
-88
lines changed

CODE_OF_CONDUCT.md

+52-41
Large diffs are not rendered by default.

DEVELOPING.md

+25-19
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ In order to run Builder on MacOS, it required that the builder services run in a
1515
To configure multipass to work for our standalone Builder, we need to ensure we can forward content from our MacOS workstation to the builder instance running in the multipass VM.
1616
In order to do that, use these steps to enable NAT forwarding:
1717

18-
1) Add the following line to the file /etc/pf.conf
18+
1) Add the following line to the file /etc/pf.conf
1919
`nat on utun1 from bridge100:network to any -> (utun1)`
20-
2) Save the file and run the following command
20+
2) Save the file and run the following command
2121
`sudo pfctl -f /etc/pf.conf`
2222

2323
In addition, if running Builder UI, we will need to ensure port 9636 is forwarded to your VM. Add these entries to /etc/pf.anchors/com.apple to enable port forwarding for builder:
@@ -26,7 +26,7 @@ In addition, if running Builder UI, we will need to ensure port 9636 is forwarde
2626

2727
`rdr pass on en0 inet proto tcp from any to self port 9636 -> <YOUR VM IP ADDRESS> 9636`
2828

29-
If using wireless connection, the network value in the second line is likely en0. Check by running ifconfig at the terminal and update this value if necessary.
29+
If using wireless connection, the network value in the second line is likely en0. Check by running ifconfig at the terminal and update this value if necessary.
3030

3131
Multipass assigns a static IP address for you when you create a virtual machine. It can be found by running `multipass list`
3232
from a MacOS terminal under the IPv4 column, noting that the instance must be running (`multipass start <VM instance>`). For convenience, adding a line to /etc/hosts will enable referring to this VM by its name rather than its IP address:
@@ -36,9 +36,10 @@ from a MacOS terminal under the IPv4 column, noting that the instance must be ru
3636
NOTE: If you are doing active Web UI development, then you will likely want to run the UI on your Host (Mac OS). If so, there are some extra steps and configuration changes that will be needed, and those are called out below. See the [Web UI README](https://github.com/habitat-sh/builder/blob/master/components/builder-web/README.md) for more info. As port forwarding is required to run in this setup, you will need to ensure that the Builder API port (9636) is forwarded from your VM to your host.
3737

3838
## Builder Status Check
39+
3940
You can test the API port access from your Host OS after starting Builder services (steps below) by issuing the following from the command line:
4041

41-
```
42+
```shell
4243
curl -v http://localhost:9636/v1/status
4344
```
4445

@@ -60,9 +61,10 @@ Before you can successfully build, you need to provision the OS with some basic
6061
The sections below will walk through the steps for getting the source and configuration ready.
6162

6263
### Builder repo clone
64+
6365
Select a location to clone the Builder repo on your Linux VM, eg, `~/Workspace` (this directory will be referred to as ${BUILDER_SRC_ROOT} in the sections below)
6466

65-
```
67+
```shell
6668
cd ${BUILDER_SRC_ROOT}
6769
git clone https://github.com/habitat-sh/builder.git
6870
```
@@ -88,14 +90,15 @@ However, if you are going to be doing Web UI development, and running the Web UI
8890

8991
### Builder configuration
9092

91-
1. Copy the GitHub application private key (from section above) to the following location (_Important: name it exactly as shown_) `${BUILDER_SRC_ROOT}/.secrets/builder-github-app.pem`
93+
1. Copy the GitHub application private key (from section above) to the following location (*Important: name it exactly as shown*) `${BUILDER_SRC_ROOT}/.secrets/builder-github-app.pem`
9294
1. Make a copy of the sample env file: `cp ${BUILDER_SRC_ROOT}/.secrets/habitat-env.sample ${BUILDER_SRC_ROOT}/.secrets/habitat-env`
9395
1. Edit the env file with your favorite editor `${BUILDER_SRC_ROOT}/.secrets/habitat-env` and populate the variables appropriately
9496
1. Save and close the env file
9597

9698
## Builder Services Setup
9799

98100
### Starting Builder services
101+
99102
Once the Builder Repo is configured, Builder services can be started inside the Habitat Studio.
100103

101104
* `cd ${BUILDER_SRC_ROOT}`
@@ -128,7 +131,6 @@ If there are recent UI changes not yet promoted to stable that you wish to try o
128131

129132
In the event that you *ARE* developing the UI then you will need to follow the instructions in the [Web UI README](https://github.com/habitat-sh/builder/blob/master/components/builder-web/README.md) to get the Web UI running on your Host OS.
130133

131-
132134
### Personal Access Token generation
133135

134136
Once the Builder services are up, you should generate a Personal Access Token. Currently, this can only be done via the Web UI.
@@ -158,20 +160,20 @@ In order to do package builds locally, at a minimum you will need to seed the yo
158160

159161
From within your Studio, do the following (for example, using the 0.64.1 version of hab-backline):
160162

161-
```
163+
```shell
162164
load_package /hab/cache/artifacts/core-hab-backline-0.64.1-20180928012546-x86_64-linux.hart
163165
```
164166

165-
Alternatively, you can use the `on-prem-archive.sh` script from the on-prem repo to do the initial hydration (and sync) of base packages - see the [Synchronizing Packages](#Synchronizing_Packages) section below.
167+
Alternatively, you can use the `on-prem-archive.sh` script from the on-prem repo to do the initial hydration (and sync) of base packages - see the [Synchronizing Packages](#synchronizing-packages) section below.
166168

167169
### Plan file connection
168170

169171
Currently, connecting a plan file is only available from within the Web UI.
170172

171173
1. Go the Builder Web UI
172-
2. Click on _My Origins_, and then select your origin
173-
3. Click on the _Connect a plan file_ button
174-
4. Click on the _Install Github App_ button to install the Builder Dev app on your github account
174+
2. Click on *My Origins*, and then select your origin
175+
3. Click on the *Connect a plan file* button
176+
4. Click on the *Install Github App* button to install the Builder Dev app on your github account
175177
5. Go back to the Packages page (from Step 3), and follow the instructions to link the plan you want to build
176178

177179
Note: your GitHub app must have access to the repo containing the plan file you are testing. Forking `habitat-sh/core-plans` is an easy way to test, or feel free to create your own repo with a test plan.
@@ -181,6 +183,7 @@ Note: your GitHub app must have access to the repo containing the plan file you
181183
You can test that the plan file you just connected actually builds by issuing a build command. You can do that either via the Builder Web UI, or via the `hab` cli.
182184

183185
### Option A: From the Web UI
186+
184187
* Navigate to http://${APP_HOSTNAME}/#/pkgs
185188
* If you are not already logged in, log in.
186189
* Click on "My origins"
@@ -195,7 +198,7 @@ You can test that the plan file you just connected actually builds by issuing a
195198

196199
Issue the following command (replace `origin/package` with your origin and package names):
197200

198-
```
201+
```shell
199202
hab bldr job start origin/package
200203
```
201204

@@ -213,7 +216,7 @@ Before building Builder you must ensure that your Personal Access Token is set t
213216

214217
If the `HAB_AUTH_TOKEN` is not set correctly, you will likely see an error similar to the following when trying to build.
215218

216-
```
219+
```shell
217220
Unloading builder-api
218221
Unloading habitat/builder-api
219222
: Loading /src/components/builder-api/habitat-dev/plan.sh
@@ -265,20 +268,23 @@ In some scenarios, it's valuable to test against `core` packages that haven't be
265268

266269
#### Build Habitat components
267270

268-
First, you will need to clone https://github.com/habitat-sh/habitat and build a subset of the components. It is important they are built in the correct order so that dependencies are correct at install time. You can use the below snippet to build them, replacing the channel as necessary.
269-
```
271+
First, you will need to clone <https://github.com/habitat-sh/habitat> and build a subset of the components. It is important they are built in the correct order so that dependencies are correct at install time. You can use the below snippet to build them, replacing the channel as necessary.
272+
273+
```shell
270274
git clone https://github.com/habitat-sh/habitat
271275
cd habitat
272276
env HAB_BLDR_CHANNEL=stable HAB_ORIGIN=core hab studio run "for component in hab plan-build backline studio pkg-export-docker; do build components/\$component; done"
273277
```
274278

275279
Next, copy the hart files produced to the `results` directory in your copy of the Builder repository. Assuming your `habitat` and `builder` checkout share the same parent directory:
276-
```
280+
281+
```shell
277282
cp habitat/results/core-hab*.hart builder/results/
278283
```
279284

280285
Next, you will need to enter the studio inside the builder directory, install the Habitat harts, and rebuild Builder against them. Once this is complete, you can follow the testing instructions detailed in [the testing readme](test/builder-api/README.md). It is safe to skip the `build-builder` step in that document. You can also use the `test-builder` helper function, shown below.
281-
```
286+
287+
```shell
282288
hab studio enter
283289
hab pkg install results/core-hab*.hart
284290
for component in builder-api builder-api-proxy builder-datastore builder-graph builder-jobsrv builder-minio builder-worker; do
@@ -296,7 +302,7 @@ Some services like builder-api and builder-jobsrv send statsd metrics. These are
296302

297303
The below assumes node and npm is already installed and available.
298304

299-
```
305+
```shell
300306
npm install -g statsd-logger
301307
statsd-logger
302308
```

MAINTAINERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Please review the Project Members section in the link above for details on how t
66

77
---
88

9-
# Maintainers
9+
## Maintainers
1010

1111
Please refer to the [Habitat Project](https://github.com/chef/chef-oss-practices/blob/master/projects/habitat.md) for the up-to-date list of owners, approvers and reviewers.

ON_CALL.md

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# On Call Instructions
2+
13
For the latest On Call instructions, please see [On Call Engineering Duties](https://github.com/habitat-sh/habitat/wiki/On-Call-Engineering-Duties) in the Habitat Wiki.

components/builder-web/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You will need the Github app id and client id for configuration below. Your Git
2222

2323
Select a location to clone the Builder repo on your Host OS, eg, `~/Workspace` (this directory will be referred to as ${BUILDER_SRC_ROOT} in the sections below)
2424

25-
```
25+
```shell
2626
cd ${BUILDER_SRC_ROOT}
2727
git clone https://github.com/habitat-sh/builder.git
2828
```
@@ -35,13 +35,13 @@ We suggest using [NVM](https://github.com/creationix/nvm) (Node Version Manager)
3535

3636
Once NVM is installed (you can verify with `nvm --version`), `cd` into `${BUILDER_SRC_ROOT}/components/builder-web` and run:
3737

38-
```
38+
```shell
3939
nvm install
4040
```
4141

4242
When that completes, verify the installation:
4343

44-
```
44+
```shell
4545
node --version
4646
```
4747

@@ -57,16 +57,16 @@ Update the *github_app_id* and *oauth_client_id* fields with the values from you
5757

5858
To start the node web server on your local machine:
5959

60-
```
60+
```shell
6161
npm install
6262
npm start
6363
```
6464

6565
You should now be able to browse to the UI at `http://localhost:3000/#/pkgs`.
6666

67-
Note that browsing to `http://localhost:3000/` (i.e., at the root level) will activate the application's default route, which is configured to redirect signed-out users to the Habitat home page (http://habitat.sh), and various navigation links will operate similarly. If you plan on developing for both the Builder UI and the [Web site](../../www), consider changing some of your configuration entries to allow for easier navigation between the two:
67+
Note that browsing to `http://localhost:3000/` (i.e., at the root level) will activate the application's default route, which is configured to redirect signed-out users to the Habitat home page <http://habitat.sh>, and various navigation links will operate similarly. If you plan on developing for both the Builder UI and the [Web site](../../www), consider changing some of your configuration entries to allow for easier navigation between the two:
6868

69-
```
69+
```shell
7070
...
7171
docs_url: "http://localhost:4567/docs",
7272
tutorials_url: "http://localhost:4567/learn",

docs/Migrations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All builder migrations are run with [Diesel](http://diesel.rs). This document de
44

55
## Install the Diesel client
66

7-
```
7+
```shell
88
cargo install diesel_cli --no-default-features --features postgres
99
```
1010

@@ -25,7 +25,7 @@ The migration name should describe what you are doing. Ex:
2525

2626
This will generate something like
2727

28-
```
28+
```shell
2929
Creating migrations/20160815133237_create_posts/up.sql
3030
Creating migrations/20160815133237_create_posts/down.sql
3131
```

tools/bldr_toml_create/README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Builder TOML Creation Tool
1+
# Builder TOML Creation Tool
22

33
This is a development tool that can be used to create a ```bldr.toml``` file for
44
a given repo. This tool is targeted to creating a toml file for the core plans
@@ -7,11 +7,12 @@ repo.
77
It takes as input parameters a local path to the core-plans repo, and a
88
destination directory for the ```bldr.toml``` file.
99

10-
### Usage
10+
## Usage
1111

1212
You need to have a recent Ruby installed.
1313

1414
To run:
15-
```
15+
16+
```shell
1617
ruby toml_create.rb <core-plans-dir> <destination-dir>
1718
```

tools/hab-channel-list-pkgs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## List All Packages in a Channel
1+
# List All Packages in a Channel
22

33
This is a a tool which will fetch all packages that are in an origin's channel across multiple paged API responses.
44

5-
### Usage
5+
## Usage
66

77
The following command line tools are required and will be checked before running:
88

tools/hab_token/Usage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It makes is easier to switch between tokens during development / acceptance test
1010

1111
The `.tokens` file should have the following format:
1212

13-
```
13+
```shell
1414
#!/bin/bash
1515
TOKEN_LIVE=<your prod token>
1616
TOKEN_ACCEPTANCE=<your acceptance token>
@@ -21,12 +21,12 @@ TOKEN_DEV=<your dev token>
2121

2222
When you want to switch to a specific token, issue a command like the following in your shell:
2323

24-
```
24+
```shell
2525
eval $(hab-token live)
2626
```
2727

2828
This should set and export the `HAB_AUTH_TOKEN` env variable appropriately. You can confirm that the token is set by doing the following:
2929

30-
```
30+
```shell
3131
echo $HAB_AUTH_TOKEN
3232
```

tools/project_create/README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Bulk Project Creation Tool
1+
# Bulk Project Creation Tool
22

33
This is a development tool that can be used to bulk create projects for builder
44
services. Project creation is a key pre-requisite that needs to be done for the
@@ -9,20 +9,21 @@ input parameters a local path to the core-plans repo, an API endpoint URL,
99
an installation id (for an installed Habitat Builder app), and a Github auth
1010
token.
1111

12-
### Usage
12+
## Usage
1313

1414
You need to have a recent Ruby installed.
1515

1616
To run:
17-
```
17+
18+
```shell
1819
ruby project_create.rb <core-plans-dir> <projects-url> <installation-id> [<auth-token>]
1920
```
2021

2122
The projects-url should be in this form (replace the URL appropriately):
22-
https://bldr.acceptance.habitat.sh
23+
<https://bldr.acceptance.habitat.sh>
2324

2425
For a development environment, the URL will be:
25-
http://localhost:9636
26+
<http://localhost:9636>
2627

2728
If `<auth-token>` is not specified, the script will default to looking for
2829
the `HAB_AUTH_TOKEN` environment variable.
@@ -34,6 +35,7 @@ and repositories from Github using Github App authentication. These
3435
require nodejs to be installed (any recent version should be fine).
3536

3637
The tools are:
38+
3739
* app.js - gets basic app info (for sanity validation)
3840
* installations.js - get a list of installation ids and names
3941
* repos.js - gets a list of repo ids and repo names
@@ -43,7 +45,8 @@ the PEM file available on the machine. For reference, the Habitat Builder
4345
Dev app id is 5629.
4446

4547
Example usage (assumes the pem file is in the current folder):
46-
```
48+
49+
```shell
4750
node app.js 5629 builder-github-app.pem
4851
node installations.js 5629 builder-github-app.pem
4952
node repos.js 5629 56940 builder-github-app.pem

tools/ssh_helpers/Usage.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Prerequisites
1+
# Usage
2+
3+
## Prerequisites
24

35
These scripts make it easy to connect to running Habitat instances. To use them, you'll need to set up a few things first:
46

@@ -10,7 +12,7 @@ These scripts make it easy to connect to running Habitat instances. To use them,
1012
* Install [tmux](https://github.com/tmux/tmux/wiki). (e.g., `brew install tmux`)
1113
* Install [tmuxinator](https://github.com/tmuxinator/tmuxinator). (`gem install tmuxinator`)
1214

13-
# Testing AWS CLI
15+
## Testing AWS CLI
1416

1517
Since we typically use `okta_aws` and you may have multiple profiles, you will likely need to specify the following environment variable: `AWS_PROFILE`.
1618
Otherwise, you may receive this error: `An error occurred (InvalidClientTokenId) when calling the GetCallerIdentity operation: The security token included in the request is invalid.`
@@ -22,18 +24,18 @@ export AWS_PROFILE=habitat
2224
aws sts get-caller-identity
2325
```
2426

25-
# Generating and Updating Configuration
27+
## Generating and Updating Configuration
2628

2729
Once you're set up with the prerequisites listed above, you should be able to generate SSH and tmuxinator configurations using the following commands (executed from within this directory):
2830

29-
```
31+
```shell
3032
./update-habitat-ssh acceptance
3133
./update-habitat-ssh live
3234
```
3335

3436
And with that, connect to running environments:
3537

36-
```
38+
```shell
3739
./hab-env acceptance
3840
./hab-env live
3941
```

0 commit comments

Comments
 (0)