Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9169241
CHANGELOG
Mar 27, 2026
c6c020a
Remove openshift 3 templating
Mar 27, 2026
9f57afc
Remove openshift 3 support from roxctl
Mar 26, 2026
de59b9d
Remove more OpenShift 3 cruft from Helm/Bundle code
Apr 9, 2026
e342a1d
Remove OpenShift 3 roxctl test
Mar 26, 2026
9ae2bd1
Change openshift auto-sensing in Helm chart to only check for config.…
Mar 18, 2026
e6632dd
Helm tests: Replace openshift-4.1.0 schema with openshift-4.12.
Apr 8, 2026
a23285a
Helm tests: remove openshift 3 tests.
Apr 8, 2026
33cf606
Helm tests: remove kubernetes server capabilities.
Apr 8, 2026
430dd3f
Helm tests: extend test case.
Apr 8, 2026
4184e4d
Helm tests: modify test from openshift 3 for openshift 4
Apr 8, 2026
2639886
Helm test: remove outdated test.
Apr 8, 2026
3691373
New roxctl test: verifying that --openshift-version=3 fails
Apr 8, 2026
772f586
Adjust rendering unit test for centralDb.
Apr 8, 2026
4039256
Adjust rendering unit test for secured-cluster-services bundle.
Apr 9, 2026
150a1eb
Add comment.
Apr 9, 2026
1e0512a
Tests: Remove OpenShift 3 test data
Apr 9, 2026
5dc132c
Deprecate OPENSHIFT_CLUSTER enum value
Apr 9, 2026
653812f
Generated protos
Apr 9, 2026
e662b82
Proto lock commit
Apr 9, 2026
5954132
Fail validation if cluster type is OpenShift 3
Apr 9, 2026
c278bdf
Tests: Remove OpenShift 3 data
Apr 9, 2026
71c3c3e
Tests: Remove OpenShift 3 data
Apr 9, 2026
1facce1
Make addScripts() fail for OpenShift 3 cluster types.
Apr 9, 2026
a8ca7fd
Test: Adjust for updated error message
Apr 9, 2026
8dbc34d
Remove OpenShift 3 test data
Apr 9, 2026
ee842ce
Remove OpenShift 3 test data from platformcve tests to make them pass…
Apr 10, 2026
ea80cab
Remove openshift 3 test case
Apr 13, 2026
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
Prev Previous commit
Next Next commit
Make addScripts() fail for OpenShift 3 cluster types.
  • Loading branch information
Moritz Clasmeier committed Apr 12, 2026
commit 1facce111c835168f229f97940b0b49d9d6b8980
2 changes: 1 addition & 1 deletion image/embed_charts.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (i *Image) GetSensorChart(values *charts.MetaValues, certs *sensor.Certs) (
func (i *Image) addScripts(values *charts.MetaValues) ([]*loader.BufferedFile, error) {
if values.ClusterType == storage.ClusterType_KUBERNETES_CLUSTER.String() {
return i.scripts(values, k8sScriptsFileMap)
} else if values.ClusterType == storage.ClusterType_OPENSHIFT_CLUSTER.String() || values.ClusterType == storage.ClusterType_OPENSHIFT4_CLUSTER.String() {
} else if values.ClusterType == storage.ClusterType_OPENSHIFT4_CLUSTER.String() {
return i.scripts(values, osScriptsFileMap)
}
return nil, errors.Errorf("unable to create sensor bundle, invalid cluster type for cluster %s",
Expand Down