Skip to content

Commit fc1a33d

Browse files
committed
Update documentations for buildah support
1 parent 298e036 commit fc1a33d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
### Added
44

5+
- New option for [`operator-sdk build --image-builder`](https://github.com/operator-framework/operator-sdk/blob/master/doc/sdk-cli-reference.md#build), which can be used to specify which image builder to use. ([#1311](https://github.com/operator-framework/operator-sdk/pull/1311))
6+
57
### Changed
68

79
- When Helm operator projects are created, the SDK now generates RBAC rules in `deploy/role.yaml` based on the chart's default manifest. ([#1188](https://github.com/operator-framework/operator-sdk/pull/1188))
10+
- Renamed `--docker-build-args` option to `--image-build-args` option for `build` subcommand, because this option can now be shared with other image build tools than docker when `--image-builder` option is specified. ([#1311](https://github.com/operator-framework/operator-sdk/pull/1311))
811

912
### Deprecated
1013

doc/sdk-cli-reference.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Usage:
1616
* `--enable-tests` - enable in-cluster testing by adding test binary to the image
1717
* `--namespaced-manifest` string - path of namespaced resources manifest for tests (default "deploy/operator.yaml")
1818
* `--test-location` string - location of tests (default "./test/e2e")
19-
* `--docker-build-args` string - extra, optional docker build arguments as one string such as `"--build-arg https_proxy=$https_proxy"` (default "")
19+
* `--image-build-args` string - extra, optional image build arguments as one string such as `"--build-arg https_proxy=$https_proxy"` (default "")
20+
* `--image-builder` string - tool to build OCI images. One of: [docker, buildah] (default "docker")
2021
* `-h, --help` - help for build
2122

2223
### Use

0 commit comments

Comments
 (0)