Skip to content

Commit d2e69ec

Browse files
committed
Merge remote-tracking branch 'upstream/main' into ou-923
2 parents 5a91247 + 9a7a190 commit d2e69ec

File tree

101 files changed

+1768
-583
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1768
-583
lines changed

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/nodejs-20:1-59 AS web-builder
1+
FROM registry.redhat.io/ubi9/nodejs-22:9.6-1755075210 AS web-builder
22

33
WORKDIR /opt/app-root
44

Dockerfile.dev-mcp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mcp (monitoring-console-plugin)
22

3-
FROM registry.redhat.io/ubi9/nodejs-20:1-59 AS web-builder
3+
FROM registry.redhat.io/ubi9/nodejs-22:9.6-1755075210 AS web-builder
44

55
USER 0
66

Dockerfile.konflux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/nodejs-18:latest AS web-builder
1+
FROM registry.redhat.io/ubi9/nodejs-22:9.6-1755075210 AS web-builder
22

33
WORKDIR /opt/app-root
44

Dockerfile.mcp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mcp (monitoring-console-plugin)
22

3-
FROM registry.redhat.io/ubi9/nodejs-20:1-59 AS web-builder
3+
FROM registry.redhat.io/ubi9/nodejs-22:9.6-1755075210 AS web-builder
44

55
USER 0
66

Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/nodejs-20:1-59 AS web-builder
1+
FROM registry.redhat.io/ubi9/nodejs-22:9.6-1755075210 AS web-builder
22

33
USER 0
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Since the store for the `monitoring-plugin` is stored in the `openshift/console`
137137
# Login to an OpenShift cluster
138138
$ oc login <clusterAddress> -u <username> -p <password>
139139
140-
# Start podman (or Docker)
140+
# Start podman (or Docker) - Linux machines can skip this part
141141
$ podman machine init
142142
$ podman machine start
143143
@@ -148,10 +148,10 @@ $ make install
148148
$ make start-frontend
149149
150150
# In a separate terminal
151-
$ make start-feature-backend
151+
$ make start-feature-console
152152
153153
# In a separate terminal
154-
$ make start-feature-console
154+
$ make start-feature-backend
155155
```
156156

157157
`make start-feature-backend` will inject the `perses-dashboards`, `incidents`, and `dev-config` features by default. Features such as `acm-alerting` which take in extra parameters will need to run the `make start-feature-backend` command with the appropriate environment variables, such as `MONITORING_PLUGIN_ALERTMANAGER`.

web/.eslintrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ extends:
66
- plugin:react/recommended
77
- plugin:react-hooks/recommended
88
- plugin:@typescript-eslint/recommended
9+
- plugin:react/jsx-runtime
910
- prettier
1011
parser: '@typescript-eslint/parser'
1112
parserOptions:

web/cypress.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export default defineConfig({
2121
),
2222
LOGIN_USERNAME: process.env.CYPRESS_LOGIN_USERS.split(',')[0].split(':')[0],
2323
LOGIN_PASSWORD: process.env.CYPRESS_LOGIN_USERS.split(',')[0].split(':')[1],
24+
typeDelay: 200,
2425
},
2526
fixturesFolder: 'fixtures',
2627
defaultCommandTimeout: 80000, //due to performance loading issue on console

web/cypress/downloads/openshift.csv

Lines changed: 0 additions & 2 deletions
This file was deleted.

web/cypress/dummy.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import * as React from 'react';
2-
31
export {
42
ActionServiceProvider,
53
BlueInfoCircleIcon,

0 commit comments

Comments
 (0)