Skip to content

Commit 824664a

Browse files
committed
CR image no longer needed for e2e
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent 7cf2f4c commit 824664a

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

infra/feast-operator/test/e2e/test_util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func checkIfKubernetesServiceExists(namespace, serviceName string) error {
158158

159159
func isFeatureStoreHavingRemoteRegistry(namespace, featureStoreName string) (bool, error) {
160160
cmd := exec.Command("kubectl", "get", "featurestore", featureStoreName, "-n", namespace,
161-
"-o=jsonpath='{.spec.services.registry}'")
161+
"-o=jsonpath='{.status.applied.services.registry}'")
162162

163163
// Capture the output
164164
output, err := cmd.Output()

infra/feast-operator/test/testdata/feast_integration_test_crs/v1alpha1_default_featurestore.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,5 @@ metadata:
55
spec:
66
feastProject: my_project
77
services:
8-
onlineStore:
9-
image: 'localhost/feastdev/feature-server:dev'
10-
offlineStore:
11-
image: 'localhost/feastdev/feature-server:dev'
12-
registry:
13-
local:
14-
image: 'localhost/feastdev/feature-server:dev'
8+
onlineStore: {}
9+
offlineStore: {}

infra/feast-operator/test/testdata/feast_integration_test_crs/v1alpha1_remote_registry_featurestore.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ metadata:
55
spec:
66
feastProject: my_project
77
services:
8-
onlineStore:
9-
image: 'localhost/feastdev/feature-server:dev'
10-
offlineStore:
11-
image: 'localhost/feastdev/feature-server:dev'
8+
onlineStore: {}
9+
offlineStore: {}
1210
registry:
1311
remote:
1412
feastRef:

0 commit comments

Comments
 (0)