Skip to content

Commit 59dab63

Browse files
Temporarily force the installer to be part of the payload
It should instead be referenced by another component, but include it here until we can identify what that is. This gives us installer reproducibility for hive.
1 parent 9d2874f commit 59dab63

File tree

1 file changed

+4
-1
lines changed
  • pkg/oc/cli/admin/release

1 file changed

+4
-1
lines changed

pkg/oc/cli/admin/release/new.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ func NewNewOptions(streams genericclioptions.IOStreams) *NewOptions {
4242
return &NewOptions{
4343
IOStreams: streams,
4444
MaxPerRegistry: 4,
45-
AlwaysInclude: []string{"cluster-version-operator", "cli"},
45+
// TODO: only cluster-version-operator and maybe CLI should be in this list,
46+
// the others should always be referenced by the cluster-bootstrap or
47+
// another operator.
48+
AlwaysInclude: []string{"cluster-version-operator", "cli", "installer"},
4649
ToImageBaseTag: "cluster-version-operator",
4750
}
4851
}

0 commit comments

Comments
 (0)