You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: DEVELOPING.md
+25-19
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ In order to run Builder on MacOS, it required that the builder services run in a
15
15
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.
16
16
In order to do that, use these steps to enable NAT forwarding:
17
17
18
-
1)Add the following line to the file /etc/pf.conf
18
+
1) Add the following line to the file /etc/pf.conf
19
19
`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
21
21
`sudo pfctl -f /etc/pf.conf`
22
22
23
23
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
26
26
27
27
`rdr pass on en0 inet proto tcp from any to self port 9636 -> <YOUR VM IP ADDRESS> 9636`
28
28
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.
30
30
31
31
Multipass assigns a static IP address for you when you create a virtual machine. It can be found by running `multipass list`
32
32
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
36
36
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.
37
37
38
38
## Builder Status Check
39
+
39
40
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:
40
41
41
-
```
42
+
```shell
42
43
curl -v http://localhost:9636/v1/status
43
44
```
44
45
@@ -60,9 +61,10 @@ Before you can successfully build, you need to provision the OS with some basic
60
61
The sections below will walk through the steps for getting the source and configuration ready.
61
62
62
63
### Builder repo clone
64
+
63
65
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)
@@ -88,14 +90,15 @@ However, if you are going to be doing Web UI development, and running the Web UI
88
90
89
91
### Builder configuration
90
92
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`
92
94
1. Make a copy of the sample env file: `cp ${BUILDER_SRC_ROOT}/.secrets/habitat-env.sample ${BUILDER_SRC_ROOT}/.secrets/habitat-env`
93
95
1. Edit the env file with your favorite editor `${BUILDER_SRC_ROOT}/.secrets/habitat-env` and populate the variables appropriately
94
96
1. Save and close the env file
95
97
96
98
## Builder Services Setup
97
99
98
100
### Starting Builder services
101
+
99
102
Once the Builder Repo is configured, Builder services can be started inside the Habitat Studio.
100
103
101
104
*`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
128
131
129
132
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.
130
133
131
-
132
134
### Personal Access Token generation
133
135
134
136
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
158
160
159
161
From within your Studio, do the following (for example, using the 0.64.1 version of hab-backline):
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.
166
168
167
169
### Plan file connection
168
170
169
171
Currently, connecting a plan file is only available from within the Web UI.
170
172
171
173
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
175
177
5. Go back to the Packages page (from Step 3), and follow the instructions to link the plan you want to build
176
178
177
179
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
181
183
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.
182
184
183
185
### Option A: From the Web UI
186
+
184
187
* Navigate to http://${APP_HOSTNAME}/#/pkgs
185
188
* If you are not already logged in, log in.
186
189
* Click on "My origins"
@@ -195,7 +198,7 @@ You can test that the plan file you just connected actually builds by issuing a
195
198
196
199
Issue the following command (replace `origin/package` with your origin and package names):
197
200
198
-
```
201
+
```shell
199
202
hab bldr job start origin/package
200
203
```
201
204
@@ -213,7 +216,7 @@ Before building Builder you must ensure that your Personal Access Token is set t
213
216
214
217
If the `HAB_AUTH_TOKEN` is not set correctly, you will likely see an error similar to the following when trying to build.
@@ -265,20 +268,23 @@ In some scenarios, it's valuable to test against `core` packages that haven't be
265
268
266
269
#### Build Habitat components
267
270
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
270
274
git clone https://github.com/habitat-sh/habitat
271
275
cd habitat
272
276
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"
273
277
```
274
278
275
279
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:
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.
Copy file name to clipboardexpand all lines: MAINTAINERS.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,6 @@ Please review the Project Members section in the link above for details on how t
6
6
7
7
---
8
8
9
-
# Maintainers
9
+
##Maintainers
10
10
11
11
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.
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.
Copy file name to clipboardexpand all lines: components/builder-web/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ You will need the Github app id and client id for configuration below. Your Git
22
22
23
23
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)
@@ -35,13 +35,13 @@ We suggest using [NVM](https://github.com/creationix/nvm) (Node Version Manager)
35
35
36
36
Once NVM is installed (you can verify with `nvm --version`), `cd` into `${BUILDER_SRC_ROOT}/components/builder-web` and run:
37
37
38
-
```
38
+
```shell
39
39
nvm install
40
40
```
41
41
42
42
When that completes, verify the installation:
43
43
44
-
```
44
+
```shell
45
45
node --version
46
46
```
47
47
@@ -57,16 +57,16 @@ Update the *github_app_id* and *oauth_client_id* fields with the values from you
57
57
58
58
To start the node web server on your local machine:
59
59
60
-
```
60
+
```shell
61
61
npm install
62
62
npm start
63
63
```
64
64
65
65
You should now be able to browse to the UI at `http://localhost:3000/#/pkgs`.
66
66
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:
Since we typically use `okta_aws` and you may have multiple profiles, you will likely need to specify the following environment variable: `AWS_PROFILE`.
16
18
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
22
24
aws sts get-caller-identity
23
25
```
24
26
25
-
# Generating and Updating Configuration
27
+
##Generating and Updating Configuration
26
28
27
29
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):
0 commit comments