11/*
2- * Copyright 2023-2025 Hewlett Packard Enterprise Development LP
2+ * Copyright 2023-2026 Hewlett Packard Enterprise Development LP
33 * Other additional copyright holders may be indicated within.
44 *
55 * The entirety of this work is licensed under the Apache License,
@@ -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- nnfv1alpha9 "github.com/NearNodeFlash/nnf-sos/api/v1alpha9 "
40+ nnfv1alpha10 "github.com/NearNodeFlash/nnf-sos/api/v1alpha10 "
4141
4242 "github.com/DataWorkflowServices/dws/utils/dwdparse"
4343)
@@ -333,7 +333,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
333333 By (fmt .Sprintf ("Creating storage profile '%s'" , o .storageProfile .name ))
334334
335335 // Clone the default profile.
336- defaultProf := & nnfv1alpha9 .NnfStorageProfile {
336+ defaultProf := & nnfv1alpha10 .NnfStorageProfile {
337337 ObjectMeta : metav1.ObjectMeta {
338338 Name : "default" ,
339339 Namespace : "nnf-system" ,
@@ -342,7 +342,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
342342
343343 Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (defaultProf ), defaultProf )).To (Succeed ())
344344
345- profile := & nnfv1alpha9 .NnfStorageProfile {
345+ profile := & nnfv1alpha10 .NnfStorageProfile {
346346 ObjectMeta : metav1.ObjectMeta {
347347 Name : o .storageProfile .name ,
348348 Namespace : "nnf-system" ,
@@ -370,7 +370,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
370370
371371 if o .containerProfile != nil {
372372 // Clone the provided base profile
373- baseProfile := & nnfv1alpha9 .NnfContainerProfile {
373+ baseProfile := & nnfv1alpha10 .NnfContainerProfile {
374374 ObjectMeta : metav1.ObjectMeta {
375375 Name : o .containerProfile .base ,
376376 Namespace : "nnf-system" ,
@@ -379,7 +379,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
379379
380380 Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (baseProfile ), baseProfile )).To (Succeed ())
381381
382- profile := & nnfv1alpha9 .NnfContainerProfile {
382+ profile := & nnfv1alpha10 .NnfContainerProfile {
383383 ObjectMeta : metav1.ObjectMeta {
384384 Name : o .containerProfile .name ,
385385 Namespace : "nnf-system" ,
@@ -433,7 +433,7 @@ func (t *T) Prepare(ctx context.Context, k8sClient client.Client) error {
433433
434434 // Extract the File System Name and MGSNids from the persistent lustre instance. This
435435 // assumes an NNF Storage resource is created in the same name as the persistent instance
436- storage := & nnfv1alpha9 .NnfStorage {
436+ storage := & nnfv1alpha10 .NnfStorage {
437437 ObjectMeta : metav1.ObjectMeta {
438438 Name : name ,
439439 Namespace : corev1 .NamespaceDefault ,
@@ -570,7 +570,7 @@ func (t *T) Cleanup(ctx context.Context, k8sClient client.Client) error {
570570 if t .options .storageProfile != nil {
571571 By (fmt .Sprintf ("Deleting storage profile '%s'" , o .storageProfile .name ))
572572
573- profile := & nnfv1alpha9 .NnfStorageProfile {
573+ profile := & nnfv1alpha10 .NnfStorageProfile {
574574 ObjectMeta : metav1.ObjectMeta {
575575 Name : o .storageProfile .name ,
576576 Namespace : "nnf-system" ,
@@ -584,7 +584,7 @@ func (t *T) Cleanup(ctx context.Context, k8sClient client.Client) error {
584584 if t .options .containerProfile != nil {
585585 By (fmt .Sprintf ("Deleting container profile '%s'" , o .containerProfile .name ))
586586
587- profile := & nnfv1alpha9 .NnfContainerProfile {
587+ profile := & nnfv1alpha10 .NnfContainerProfile {
588588 ObjectMeta : metav1.ObjectMeta {
589589 Name : o .containerProfile .name ,
590590 Namespace : "nnf-system" ,
0 commit comments