https://github.com/buildtool/buildtools-buildkite-plugin
buildkite plugin for buildtools - for fast a simple build and deployment to Kubernetes clusters
https://github.com/buildtool/buildtools-buildkite-plugin
buildkite-plugin deployment docker kubernetes
Last synced: 3 months ago
JSON representation
buildkite plugin for buildtools - for fast a simple build and deployment to Kubernetes clusters
- Host: GitHub
- URL: https://github.com/buildtool/buildtools-buildkite-plugin
- Owner: buildtool
- Created: 2021-03-23T08:32:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-27T08:57:27.000Z (10 months ago)
- Last Synced: 2025-05-27T10:00:01.326Z (10 months ago)
- Topics: buildkite-plugin, deployment, docker, kubernetes
- Language: Shell
- Homepage: https://buildtools.io/
- Size: 14.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Buildtools Buildkite Plugin
A [Buildkite plugin](https://buildkite.com/docs/agent/v3/plugins) for running pipeline steps using [buildtools](https://buildtools.io/).
## Example
```yml
steps:
- command: "build"
plugins:
- buildtool/buildtools:
```
If you want to source environment variables from a file in S3
```yml
steps:
- command: "build"
plugins:
- buildtool/buildtools:
config: "s3://my-buildkite-secrets/configs/test"
```
## Configuration
### `config` (optional, string)
A configuration file to source located in S3, should set `env` variables to be used by buildtools like `BUILDTOOLS_CONTENT` and `KUBECONFIG_CONTENT_BASE64`
Example: `s3://my-buildkite-secrets/configs/test`
### Optional
### `version` (optional, string)
The version of buildtools to use, defaults to `latest`
Example: `0.2.28`