Skip to content

Commit

Permalink
Bump quarkus.platform.version from 3.8.6 to 3.15.1 (#1082)
Browse files Browse the repository at this point in the history
* Bump quarkus.platform.version from 3.8.6 to 3.15.1

Signed-off-by: Michael Edgar <[email protected]>

* Capture operator logs on playwright test failure

Signed-off-by: Michael Edgar <[email protected]>

* Manage QOSDK at version 6.8.1

Signed-off-by: Michael Edgar <[email protected]>

---------

Signed-off-by: Michael Edgar <[email protected]>
  • Loading branch information
MikeEdgar authored Oct 1, 2024
1 parent d2f74e0 commit b42f6fd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/playwright-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ jobs:
mkdir ./resources
kubectl get all,catalogsources,operatorgroups -n olm -o yaml > ./resources/olm.yaml
kubectl get all,subscriptions,csv,operatorgroups,installplans -n operators -o yaml > ./resources/operators.yaml
kubectl logs -n operators -l app.kubernetes.io/name=console-operator --all-containers=true --tail -1 > ./resources/console-operator-logs.txt
kubectl get all -n $TARGET_NAMESPACE -o yaml > ./resources/$TARGET_NAMESPACE.yaml
kubectl logs -n ${TARGET_NAMESPACE} -l app.kubernetes.io/instance=example-console-deployment --all-containers=true > ./resources/$TARGET_NAMESPACE-console-logs.txt
Expand Down
21 changes: 10 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!-- Dependencies -->
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.8.6</quarkus.platform.version>
<quarkus.platform.version>3.15.1</quarkus.platform.version>
<strimzi-api.version>0.43.0</strimzi-api.version>
<strimzi-oauth.version>0.15.0</strimzi-oauth.version>

Expand Down Expand Up @@ -74,14 +74,6 @@

<dependencyManagement>
<dependencies>
<!-- fabric8 to align with version used by JOSDK -->
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client-bom</artifactId>
<version>6.11.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Manage nimbus-jose-jwt for CVE-2023-52428 -->
<dependency>
<groupId>com.nimbusds</groupId>
Expand Down Expand Up @@ -116,9 +108,16 @@
<scope>import</scope>
</dependency>
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<!--
When bumping quarkus-platform next, check that QOSDK
6.8.1 or above and change back to using properties:
groupId = ${quarkus.platform.group-id}
version = ${quarkus.platform.version}
-->
<groupId>io.quarkiverse.operatorsdk</groupId>
<artifactId>quarkus-operator-sdk-bom</artifactId>
<version>${quarkus.platform.version}</version>
<version>6.8.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
1 change: 1 addition & 0 deletions ui/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ yarn.lock

tests/playwright/.auth/*.json
/test-results/
/.pino-prettyrc

0 comments on commit b42f6fd

Please sign in to comment.