Skip to content

Commit

Permalink
Temporarily force the installer to be part of the payload
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
smarterclayton committed Dec 8, 2018
1 parent 9d2874f commit 59dab63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/oc/cli/admin/release/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ func NewNewOptions(streams genericclioptions.IOStreams) *NewOptions {
return &NewOptions{
IOStreams: streams,
MaxPerRegistry: 4,
AlwaysInclude: []string{"cluster-version-operator", "cli"},
// 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"},
ToImageBaseTag: "cluster-version-operator",
}
}
Expand Down

0 comments on commit 59dab63

Please sign in to comment.