@@ -37,7 +37,7 @@ import (
3737
3838 dwsv1alpha7 "github.com/DataWorkflowServices/dws/api/v1alpha7"
3939 lusv1alpha1 "github.com/NearNodeFlash/lustre-fs-operator/api/v1alpha1"
40- nnfv1alpha8 "github.com/NearNodeFlash/nnf-sos/api/v1alpha8 "
40+ nnfv1alpha9 "github.com/NearNodeFlash/nnf-sos/api/v1alpha9 "
4141
4242 "github.com/DataWorkflowServices/dws/utils/dwdparse"
4343)
@@ -320,7 +320,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
320320 By (fmt .Sprintf ("Creating storage profile '%s'" , o .storageProfile .name ))
321321
322322 // Clone the default profile.
323- defaultProf := & nnfv1alpha8 .NnfStorageProfile {
323+ defaultProf := & nnfv1alpha9 .NnfStorageProfile {
324324 ObjectMeta : metav1.ObjectMeta {
325325 Name : "default" ,
326326 Namespace : "nnf-system" ,
@@ -329,7 +329,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
329329
330330 Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (defaultProf ), defaultProf )).To (Succeed ())
331331
332- profile := & nnfv1alpha8 .NnfStorageProfile {
332+ profile := & nnfv1alpha9 .NnfStorageProfile {
333333 ObjectMeta : metav1.ObjectMeta {
334334 Name : o .storageProfile .name ,
335335 Namespace : "nnf-system" ,
@@ -357,7 +357,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
357357
358358 if o .containerProfile != nil {
359359 // Clone the provided base profile
360- baseProfile := & nnfv1alpha8 .NnfContainerProfile {
360+ baseProfile := & nnfv1alpha9 .NnfContainerProfile {
361361 ObjectMeta : metav1.ObjectMeta {
362362 Name : o .containerProfile .base ,
363363 Namespace : "nnf-system" ,
@@ -366,7 +366,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
366366
367367 Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (baseProfile ), baseProfile )).To (Succeed ())
368368
369- profile := & nnfv1alpha8 .NnfContainerProfile {
369+ profile := & nnfv1alpha9 .NnfContainerProfile {
370370 ObjectMeta : metav1.ObjectMeta {
371371 Name : o .containerProfile .name ,
372372 Namespace : "nnf-system" ,
@@ -420,7 +420,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
420420
421421 // Extract the File System Name and MGSNids from the persistent lustre instance. This
422422 // assumes an NNF Storage resource is created in the same name as the persistent instance
423- storage := & nnfv1alpha8 .NnfStorage {
423+ storage := & nnfv1alpha9 .NnfStorage {
424424 ObjectMeta : metav1.ObjectMeta {
425425 Name : name ,
426426 Namespace : corev1 .NamespaceDefault ,
@@ -557,7 +557,7 @@ func (t *T) Cleanup(ctx context.Context, k8sClient client.Client) error {
557557 if t .options .storageProfile != nil {
558558 By (fmt .Sprintf ("Deleting storage profile '%s'" , o .storageProfile .name ))
559559
560- profile := & nnfv1alpha8 .NnfStorageProfile {
560+ profile := & nnfv1alpha9 .NnfStorageProfile {
561561 ObjectMeta : metav1.ObjectMeta {
562562 Name : o .storageProfile .name ,
563563 Namespace : "nnf-system" ,
@@ -571,7 +571,7 @@ func (t *T) Cleanup(ctx context.Context, k8sClient client.Client) error {
571571 if t .options .containerProfile != nil {
572572 By (fmt .Sprintf ("Deleting container profile '%s'" , o .containerProfile .name ))
573573
574- profile := & nnfv1alpha8 .NnfContainerProfile {
574+ profile := & nnfv1alpha9 .NnfContainerProfile {
575575 ObjectMeta : metav1.ObjectMeta {
576576 Name : o .containerProfile .name ,
577577 Namespace : "nnf-system" ,
0 commit comments