Skip to content

Commit 6169214

Browse files
Merge main into v1.10-branch with known resolved conflicts
2 parents 82cd070 + 42ff23d commit 6169214

File tree

3 files changed

+407
-96
lines changed

3 files changed

+407
-96
lines changed

components/odh-notebook-controller/controllers/notebook_controller_test.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,6 +1225,16 @@ var _ = Describe("The Openshift Notebook controller", func() {
12251225
return cli.Get(ctx, types.NamespacedName{Name: dsSecretName, Namespace: Namespace}, &corev1.Secret{})
12261226
}, 30*time.Second, 2*time.Second).Should(Succeed())
12271227

1228+
// ----------------------------------------------------------------
1229+
// Test workaround for the RHOAIENG-24545 - we need to manually modify
1230+
// the workbench so that the expected resource is mounted properly
1231+
// kubeflow-resource-stopped: '2025-06-25T13:53:46Z'
1232+
By("Running the workaround for RHOAIENG-24545")
1233+
notebook.Spec.Template.Spec.ServiceAccountName = "foo"
1234+
Expect(cli.Update(ctx, notebook)).Should(Succeed())
1235+
// end of workaround
1236+
// ----------------------------------------------------------------
1237+
12281238
By("Waiting and validating for volumeMount 'elyra-dsp-details' to be injected into the Notebook")
12291239
Eventually(func() bool {
12301240
var refreshed nbv1.Notebook

0 commit comments

Comments
 (0)