From 71f2a2fbee51e11b8287d60bfd4101b7da5a4b42 Mon Sep 17 00:00:00 2001 From: Stanislav Ulrych Date: Mon, 17 Oct 2022 10:05:10 +0200 Subject: [PATCH] Added CONTAINER_TOOL to set container tool for operator build (#6089) Signed-off-by: Stanislav Ulrych --- .../enable-setting-of-container-tool.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 changelog/fragments/enable-setting-of-container-tool.yaml diff --git a/changelog/fragments/enable-setting-of-container-tool.yaml b/changelog/fragments/enable-setting-of-container-tool.yaml new file mode 100644 index 00000000000..514550ed7ce --- /dev/null +++ b/changelog/fragments/enable-setting-of-container-tool.yaml @@ -0,0 +1,20 @@ +# entries is a list of entries to include in +# release notes and/or the migration guide +entries: + - description: > + For Go-based operators: Added `CONTAINER_TOOL` variable for setting of container tool for + building the operator, bundle and catalog images. + + By default, docker is used. + + Use `CONTAINER_TOOL=podman` to build with podman. The settings can be passed to the make + commands by setting 'make CONTAINER_TOOL=podman' or set in the `Makefile`. + + The taget names `docker-build`, `docker-push` in the `Makefile` are kept to keep backward compability. + + + kind: "addition" + + # Is this a breaking change? + breaking: false +