File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,10 @@ var defaultImages = map[string]string{
46
46
"ui-distributed-tracing" : "quay.io/openshift-observability-ui/distributed-tracing-console-plugin:v1.0.0" ,
47
47
"ui-logging-pf4" : "quay.io/openshift-observability-ui/logging-view-plugin:v6.0.0" ,
48
48
"ui-logging" : "quay.io/openshift-observability-ui/logging-view-plugin:v6.1.0" ,
49
- "ui-monitoring" : "quay.io/openshift-observability-ui/monitoring-console-plugin:release-coo-1.1" ,
50
49
"korrel8r" : "quay.io/korrel8r/korrel8r:release-coo-1.2" ,
51
50
"health-analyzer" : "quay.io/openshiftanalytics/cluster-health-analyzer:v0.5.0" ,
51
+ "ui-monitoring-pf5" : "quay.io/openshift-observability-ui/monitoring-console-plugin:v0.4.0" ,
52
+ "ui-monitoring" : "quay.io/openshift-observability-ui/monitoring-console-plugin:v0.5.0" ,
52
53
"perses" : "quay.io/persesdev/perses:v0.50.3" ,
53
54
}
54
55
Original file line number Diff line number Diff line change @@ -133,6 +133,16 @@ var compatibilityMatrix = []CompatibilityEntry{
133
133
{
134
134
PluginType : uiv1alpha1 .TypeMonitoring ,
135
135
MinClusterVersion : "v4.15" ,
136
+ MaxClusterVersion : "v4.19" ,
137
+ ImageKey : "ui-monitoring-pf5" ,
138
+ SupportLevel : TechPreview ,
139
+ // feature flags for montioring are dynamically injected
140
+ // based on the cluster version and and UIPlugin CR configurations
141
+ Features : []string {},
142
+ },
143
+ {
144
+ PluginType : uiv1alpha1 .TypeMonitoring ,
145
+ MinClusterVersion : "v4.19" ,
136
146
MaxClusterVersion : "" ,
137
147
ImageKey : "ui-monitoring" ,
138
148
SupportLevel : TechPreview ,
Original file line number Diff line number Diff line change @@ -262,13 +262,27 @@ func TestLookupImageAndFeatures(t *testing.T) {
262
262
{
263
263
pluginType : uiv1alpha1 .TypeMonitoring ,
264
264
clusterVersion : "v4.15" ,
265
- expectedKey : "ui-monitoring" ,
265
+ expectedKey : "ui-monitoring-pf5 " ,
266
266
expectedFeatures : []string {},
267
267
expectedErr : nil ,
268
268
},
269
269
{
270
270
pluginType : uiv1alpha1 .TypeMonitoring ,
271
271
clusterVersion : "v4.15.0-0.nightly-2024-06-06-064349" ,
272
+ expectedKey : "ui-monitoring-pf5" ,
273
+ expectedFeatures : []string {},
274
+ expectedErr : nil ,
275
+ },
276
+ {
277
+ pluginType : uiv1alpha1 .TypeMonitoring ,
278
+ clusterVersion : "v4.19" ,
279
+ expectedKey : "ui-monitoring" ,
280
+ expectedFeatures : []string {},
281
+ expectedErr : nil ,
282
+ },
283
+ {
284
+ pluginType : uiv1alpha1 .TypeMonitoring ,
285
+ clusterVersion : "v4.19.0-0.nightly-2024-06-06-064349" ,
272
286
expectedKey : "ui-monitoring" ,
273
287
expectedFeatures : []string {},
274
288
expectedErr : nil ,
You can’t perform that action at this time.
0 commit comments