From 19ac7e658050ea9318a7d0c16ea816a9fe4f131b Mon Sep 17 00:00:00 2001 From: Stephen Benjamin Date: Mon, 12 Aug 2019 12:33:00 -0400 Subject: [PATCH] pkg/cli/admin/release: include baremetal-installer in release This adds baremetal-installer to always be included in a release, which is openshift-installer that includes the baremetal platform. --- pkg/cli/admin/release/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/admin/release/new.go b/pkg/cli/admin/release/new.go index 1998f55809..7c1f39afd9 100644 --- a/pkg/cli/admin/release/new.go +++ b/pkg/cli/admin/release/new.go @@ -50,7 +50,7 @@ func NewNewOptions(streams genericclioptions.IOStreams) *NewOptions { // TODO: only cluster-version-operator and maybe CLI should be in this list, // the others should always be referenced by the cluster-bootstrap or // another operator. - AlwaysInclude: []string{"cluster-version-operator", "cli", "installer"}, + AlwaysInclude: []string{"baremetal-installer", "cluster-version-operator", "cli", "installer"}, ToImageBaseTag: "cluster-version-operator", // We strongly control the set of allowed component versions to prevent confusion // about what component versions may be used for. Changing this list requires