Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions data/data/manifests/bootkube/cvo-overrides.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@ metadata:
namespace: openshift-cluster-version
name: version
spec:
{{- if .IsSCOS }}
Comment thread
jatinsu marked this conversation as resolved.
upstream: https://amd64.origin.releases.ci.openshift.org/graph
channel: stable-scos-4
{{- else }}
channel: {{.CVOChannel}}
{{- end }}
clusterID: {{.CVOClusterID}}
{{- if .CVOCapabilities }}
capabilities:
Expand Down
2 changes: 0 additions & 2 deletions pkg/asset/ignition/bootstrap/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ type bootstrapTemplateData struct {
BootstrapInPlace *types.BootstrapInPlace
UseIPv6ForNodeIP bool
UseDualForNodeIP bool
IsSCOS bool
IsOKD bool
BootstrapNodeIP string
APIServerURL string
Expand Down Expand Up @@ -416,7 +415,6 @@ func (a *Common) getTemplateData(dependencies asset.Parents, bootstrapInPlace bo
BootstrapInPlace: bootstrapInPlaceConfig,
UseIPv6ForNodeIP: ipv6Primary,
UseDualForNodeIP: hasIPv4 && hasIPv6,
IsSCOS: installConfig.Config.IsSCOS(),
IsOKD: installConfig.Config.IsOKD(),
BootstrapNodeIP: bootstrapNodeIP,
APIServerURL: apiURL,
Expand Down
1 change: 0 additions & 1 deletion pkg/asset/manifests/operators.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ func (m *Manifests) generateBootKubeManifests(dependencies asset.Parents) []*ass
RootCaCert: string(rootCA.Cert()),
RootCACertBase64: base64.StdEncoding.EncodeToString(rootCA.Cert()),
RootCASignerKeyBase64: base64.StdEncoding.EncodeToString(rootCA.Key()),
IsSCOS: installConfig.Config.IsSCOS(),
IsOKD: installConfig.Config.IsOKD(),
}

Expand Down
1 change: 0 additions & 1 deletion pkg/asset/manifests/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ type bootkubeTemplateData struct {
EtcdSignerClientCert string
EtcdSignerClientKey string
EtcdSignerKey string
IsSCOS bool
IsOKD bool
McsTLSCert string
McsTLSKey string
Expand Down