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: README.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,7 @@ We welcome your input! If you have feedback, please [submit an issue][issues]. I
19
19
The builder is primarily a git server that responds to `git push`es by executing either the `git-receive-pack` or `git-upload-pack` hook. After it executes one of those hooks, it takes the following high level steps in order:
20
20
21
21
1. Calls `git archive` to produce a tarball (i.e. a `.tar.gz` file) on the local file system
22
-
2. Saves the tarball to centralized object storage according to the following rules:
23
-
- If the `BUILDER_STORAGE` environment variable is other than `minio`, attempts to create the appropriate storage driver and saves using this driver.
24
-
- Otherwise, if `BUILDER_STORAGE` is `minio` and the `DRYCC_MINIO_ENDPOINT` environment variables exist (these are standard [Kubernetes service discovery environment variables](http://kubernetes.io/docs/user-guide/services/#environment-variables)), saves to the [S3 API][s3-api-ref] compatible server at `$DRYCC_MINIO_ENDPOINT`
25
-
3. Starts a new [Kubernetes Pod](http://kubernetes.io/docs/user-guide/pods/) to build the code, according to the following rules:
22
+
2. Starts a new [Kubernetes Pod](http://kubernetes.io/docs/user-guide/pods/) to build the code, according to the following rules:
26
23
- If there is a `Dockerfile`, build the container with imagebuilder
27
24
- Otherwise, use imagebuilder to build CNCF native buildpack
28
25
- You can use `DRYCC_STACK` specifies the build type. Currently, it supports two types: `buildpack` and `container`
0 commit comments