forked from cloudfoundry/docs-buildpacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.html.md.erb
211 lines (138 loc) · 9.63 KB
/
custom.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
---
title: Creating Custom Buildpacks
owner: Buildpacks
---
This topic describes how to create custom buildpacks for Cloud Foundry.
For more information about how buildpacks work, see [How Buildpacks Work](understand-buildpacks.html).
## <a id='packaging-custom-buildpacks'></a> Package Custom Buildpacks
Cloud Foundry buildpacks can work with limited or no Internet connectivity. The Buildpack Packager gives the same flexibility to custom buildpacks, enabling them to work in partially or completely disconnected environments. For more information, see the [Buildpack Packager](https://github.com/cloudfoundry/libbuildpack/tree/master/packager) repository on GitHub.
### <a id='use-buildpack-packager'></a> Use the Buildpack Packager
To use the Buildpack Packager:
1. Download the Buildpack Manager from the [Buildpack Packager](https://github.com/cloudfoundry/libbuildpack/tree/master/packager) repository on GitHub.
1. Create a `manifest.yml` file in your buildpack.
1. Run the packager in cached mode by running:
```
buildpack-packager build -cached -any-stack
```
The packager will add everything in your buildpack directory into a ZIP file, excluding anything marked for exclusion in your manifest.
In cached mode, the packager downloads and adds dependencies as described in the manifest.
For more information, see the [Buildpack Packager](https://github.com/cloudfoundry/libbuildpack/tree/master/packager) repository on GitHub.
### <a id='share-buildpack-package'></a> Use and Share the Packaged Buildpack
After you have packaged your buildpack using Buildpack Packager, you can use the resulting ZIP file locally, or share it with others by uploading it to any network location that is accessible to the CLI. Users can then specify the buildpack with the `-b` option when they push apps. For more information, see [Deploying Apps with a Custom Buildpack](#deploying-with-custom-buildpacks).
<p class="note"><strong>Note:</strong> Offline buildpack packages may contain proprietary dependencies that require distribution licensing or export control measures. For more information about offline buildpacks, see the <a href="depend-pkg-offline.html#offline-buildpacks">About Offline Buildpacks</a> section of the <em>Packaging Dependencies for Offline Buildpacks</em> topic.</p>
<%= vars.upload_custom_buildpacks %>
<%= vars.link_adminguide_buildpack %>
### <a id='specifying-default-versions'></a> Specify a Default Version
As of Buildpack Packager v2.3.0, you can specify the default version for a dependency by adding a `default_versions` object to the `manifest.yml` file. The `default_versions` object has two properties, `name` and `version`. For example:
```
default_versions:
- name: go
version: 1.6.3
- name: other-dependency
version: 1.1.1
```
To specify a default version:
1. Add the `default_version` object to your manifest, following the guidance in [Rules for Specifying a Default Version](#rules). For a complete example, see [manifest.yml](https://github.com/cloudfoundry/go-buildpack/blob/master/manifest.yml) in the Cloud Foundry Go(Lang) Buildpack repository in GitHub.
1. Run the `default_version_for` script from the [compile-extensions](https://github.com/cloudfoundry/compile-extensions) repository, passing the path of your `manifest.yml` and the dependency name as arguments. Run:
```
./compile-extensions/bin/default_version_for manifest.yml DEPENDENCY-NAME
```
Where `DEPENDENCY-NAME` is the `name` property from the `default_versions` object in your `manifest.yml` file.
For more information, see [Buildpack Packager v2.3.0](https://github.com/cloudfoundry/buildpack-packager/releases/tag/v2.3.0) in the Buildpack Packager repository on GitHub.
#### <a id='rules'></a> Rules for Specifying a Default Version
The Buildpack Packager script validates this object according to the following rules:
* You can create at most one entry under `default_versions` for a single dependency. The following example causes Buildpack Packager to fail with an error because the manifest specifies two default versions for the same `go` dependency.
```
default_versions:
- name: go
version: 1.6.3
- name: go
version: 1.7.5
```
* If you specify a `default_version` for a dependency, you must also list that dependency and version under the `dependencies` section of the manifest. The following example causes Buildpack Packager to fail with an error because the manifest specifies `version: 1.9.2` for the `go` dependency, but lists `version: 1.7.5` under `dependencies`.
```
default_versions:
- name: go
version: 1.9.2
dependencies:
- name: go
version: 1.7.5
uri: https://storage.googleapis.com/golang/go1.7.5.linux-amd64.tar.gz
md5: c8cb76e2308c792e2705c2eb1b55de95
cf_stacks:
- cflinuxfs3
```
## <a id='contract'></a> Core Buildpack Communication Contract
This section describes the communication contract followed by the Cloud Foundry core buildpacks. This contract enables buildpacks to interact with one another, so that developers can use multiple buildpacks with their apps.
Buildpack developers must ensure their custom buildpacks follow the contract.
This section uses the following placeholders:
* `IDX` is the zero-padded index matching the position of the buildpack in the priority list.
* `MD5` is the MD5 checksum of the buildpack's URL.
For all buildpacks that supply dependencies via `/bin/supply`:
* The buildpack must create `/tmp/deps/IDX/config.yml` to provide a name to subsequent buildpacks. This file may also contain miscellaneous configuration for subsequent buildpacks.
* The `config.yml` file should be formatted as follows:
```
name: BUILDPACK
config: YAML-OBJECT
```
Where:
* `BUILDPACK` is the name of the buildpack providing dependencies.
* `YAML-OBJECT` is the YAML object that contains buildpack-specific configuration.
* The following directories may be created inside of `/tmp/deps/IDX/` to provide dependencies to subsequent buildpacks:
* `/bin`: Contains binaries intended for `$PATH` during staging and launch.
* `/lib`: Contains libraries intended for `$LD_LIBRARY_PATH` during staging and launch.
* `/include`: Contains header files intended for compilation during staging.
* `/pkgconfig`: Contains `pkgconfig` files intended for compilation during staging.
* `/env`: Contains environment variables intended for staging, loaded as `FILENAME=FILECONTENTS`.
* `/profile.d`: Contains scripts intended for `/app/.profile.d`, sourced before launch.
* The buildpack may make use of previous non-final buildpacks by scanning `/tmp/deps/` for index-named directories containing `config.yml`.
For the last buildpack:
* To make use of dependencies provided by the previously applied buildpacks, the last buildpack must scan `/tmp/deps/` for index-named directories containing `config.yml.`
* To make use of dependencies provided by previous buildpacks, the last buildpack:
* May use `/bin` during staging, or make it available in `$PATH` during launch.
* May use `/lib` during staging, or make it available in `$LD_LIBRARY_PATH` during launch.
* May use `/include`, `/pkgconfig`, or `/env` during staging.
* May copy files from `/profile.d` to `/tmp/app/.profile.d` during staging.
* May use the supplied config object in `config.yml` during the staging process.
## <a id='deploying-with-custom-buildpacks'></a> Deploy Apps with a Custom Buildpack
Once a custom buildpack has been created and pushed to a public Git repository, the Git URL can be passed through the cf CLI when pushing an app.
For example, you can use a buildpack that has been pushed to GitHub by running:
```
cf push YOUR-APP -b git://github.com/REPOSITORY/BUILDPACK.git
```
Where:
* `YOUR-APP` is the name of your app.
* `REPOSITORY` is the name of your public Git repository.
* `BUILDPACK` is the name of your custom buildpack.
Alternatively, you can use a private Git repository, with HTTPS and username and password authentication, by running:
```
cf push YOUR-APP -b https://USERNAME:PASSWORD@github.com/REPOSITORY/BUILDPACK.git
```
Where:
* `YOUR-APP` is the name of your app.
* `USERNAME` is your Git username.
* `PASSWORD` is the name of your Git password.
* `REPOSITORY` is the name of your public Git repository.
* `BUILDPACK` is the name of your custom buildpack.
By default, Cloud Foundry uses the default branch of the buildpack's Git repository. You can specify a different branch using the Git URL by running:
```
cf push YOUR-APP -b https://github.com/REPOSITORY/BUILDPACK.git#BRANCH
```
Where:
* `YOUR-APP` is the name of your app.
* `REPOSITORY` is the name of your public Git repository.
* `BUILDPACK` is the name of your custom buildpack.
* `BRANCH` is the branch you want to use.
Additionally, you can use tags in a Git repository by running:
```
cf push YOUR-APP -b https://github.com/REPOSITORY/BUILDPACK#TAG
```
Where:
* `YOUR-APP` is the name of your app.
* `REPOSITORY` is the name of your public Git repository.
* `BUILDPACK` is the name of your custom buildpack.
* `TAG` is the Git repository tag you want to use.
The app is then deployed to Cloud Foundry, and the buildpack is cloned from the repository and applied to the app.
<p class="note"><strong>Note:</strong> If a buildpack is specified using <code>cf push -b</code>, the <code>detect</code> step is skipped. As a result, no buildpack <code>detect</code> scripts are run.</p>
<%= vars.disable_custom %>
<p class="note"><strong>Note:</strong> A common development practice for custom buildpacks is to fork existing buildpacks and sync subsequent patches from upstream. To merge upstream patches to your custom buildpack, see <a href="https://help.github.com/articles/syncing-a-fork">Syncing a fork</a> in the GitHub documentation.</p>