Skip to content

Commit

Permalink
fix: adding persistence to isbsvc used in functional test (#308)
Browse files Browse the repository at this point in the history
Signed-off-by: Julie Vogelman <[email protected]>
  • Loading branch information
juliev0 authored Oct 1, 2024
1 parent cd71f34 commit 958c06f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/e2e/functional_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
. "github.com/onsi/gomega"
appsv1 "k8s.io/api/apps/v1"
"k8s.io/apimachinery/pkg/api/errors"
apiresource "k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
Expand Down Expand Up @@ -123,10 +124,14 @@ var (
},
}

volSize, _ = apiresource.ParseQuantity("10Mi")
isbServiceSpec = numaflowv1.InterStepBufferServiceSpec{
Redis: nil,
JetStream: &numaflowv1.JetStreamBufferService{
Version: "2.9.6",
Persistence: &numaflowv1.PersistenceStrategy{
VolumeSize: &volSize,
},
},
}

Expand Down

0 comments on commit 958c06f

Please sign in to comment.