Skip to content

Commit 6926a7c

Browse files
authored
chore: Remove CR image from e2e samples (#4942)
CR image no longer needed for e2e Signed-off-by: Tommy Hughes <[email protected]>
1 parent 7cf2f4c commit 6926a7c

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

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

+1-1
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

+2-7
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

+2-4
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)