Skip to content

Commit 1468bc5

Browse files
Merge branch 'master' into featureview-versioning
2 parents 3a73c87 + 56e6d21 commit 1468bc5

File tree

21 files changed

+517
-263
lines changed

21 files changed

+517
-263
lines changed

.github/pull_request_template.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# What this PR does / why we need it:
1313
<!--
14-
Outline what you're doing
14+
Outline what you're doing and why.
1515
-->
1616

1717
# Which issue(s) this PR fixes:
@@ -20,6 +20,16 @@ Outline what you're doing
2020
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
2121
-->
2222

23+
# Checks
24+
- [ ] I've made sure the tests are passing.
25+
- [ ] My commits are signed off (`git commit -s`)
26+
- [ ] My PR title follows [conventional commits](https://www.conventionalcommits.org/) format
27+
28+
## Testing Strategy
29+
- [ ] Unit tests
30+
- [ ] Integration tests
31+
- [ ] Manual tests
32+
- [ ] Testing is not required for this change
2333

2434
# Misc
2535
<!--

.secrets.baseline

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@
11561156
"filename": "infra/feast-operator/internal/controller/services/services.go",
11571157
"hashed_secret": "36dc326eb15c7bdd8d91a6b87905bcea20b637d1",
11581158
"is_verified": false,
1159-
"line_number": 176
1159+
"line_number": 179
11601160
}
11611161
],
11621162
"infra/feast-operator/internal/controller/services/tls_test.go": [
@@ -1539,5 +1539,5 @@
15391539
}
15401540
]
15411541
},
1542-
"generated_at": "2026-03-18T08:09:25Z"
1542+
"generated_at": "2026-03-18T13:51:43Z"
15431543
}

docs/reference/online-stores/dynamodb.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Feast requires the following permissions in order to execute commands for Dynamo
6969

7070
| **Command** | Permissions | Resources |
7171
| ----------------------- | ----------------------------------------------------------------------------------- | ------------------------------------------------- |
72-
| **Apply** | <p>dynamodb:CreateTable</p><p>dynamodb:DescribeTable</p><p>dynamodb:DeleteTable</p> | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
72+
| **Apply** | <p>dynamodb:CreateTable</p><p>dynamodb:DescribeTable</p><p>dynamodb:DeleteTable</p><p>dynamodb:TagResource</p> | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
7373
| **Materialize** | dynamodb.BatchWriteItem | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
7474
| **Get Online Features** | dynamodb.BatchGetItem | arn:aws:dynamodb:\<region>:\<account_id>:table/\* |
7575

@@ -83,6 +83,7 @@ The following inline policy can be used to grant Feast the necessary permissions
8383
"dynamodb:CreateTable",
8484
"dynamodb:DescribeTable",
8585
"dynamodb:DeleteTable",
86+
"dynamodb:TagResource",
8687
"dynamodb:BatchWriteItem",
8788
"dynamodb:BatchGetItem"
8889
],

infra/feast-operator/config/rbac/role.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,17 @@ rules:
101101
- get
102102
- patch
103103
- update
104+
- apiGroups:
105+
- monitoring.coreos.com
106+
resources:
107+
- servicemonitors
108+
verbs:
109+
- create
110+
- delete
111+
- get
112+
- list
113+
- patch
114+
- watch
104115
- apiGroups:
105116
- policy
106117
resources:

infra/feast-operator/dist/install.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20396,6 +20396,17 @@ rules:
2039620396
- get
2039720397
- patch
2039820398
- update
20399+
- apiGroups:
20400+
- monitoring.coreos.com
20401+
resources:
20402+
- servicemonitors
20403+
verbs:
20404+
- create
20405+
- delete
20406+
- get
20407+
- list
20408+
- patch
20409+
- watch
2039920410
- apiGroups:
2040020411
- policy
2040120412
resources:

infra/feast-operator/go.mod

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,48 @@ module github.com/feast-dev/feast/infra/feast-operator
33
go 1.22.9
44

55
require (
6-
github.com/onsi/ginkgo/v2 v2.17.1
7-
github.com/onsi/gomega v1.32.0
6+
github.com/onsi/ginkgo/v2 v2.17.2
7+
github.com/onsi/gomega v1.33.1
88
github.com/openshift/api v0.0.0-20240912201240-0a8800162826 // release-4.17
99
gopkg.in/yaml.v3 v3.0.1
10-
k8s.io/api v0.30.1
11-
k8s.io/apimachinery v0.30.1
12-
k8s.io/client-go v0.30.1
10+
k8s.io/api v0.30.2
11+
k8s.io/apimachinery v0.30.2
12+
k8s.io/client-go v0.30.2
1313
sigs.k8s.io/controller-runtime v0.18.4
1414
)
1515

16+
require (
17+
github.com/prometheus-operator/prometheus-operator/pkg/client v0.75.0
18+
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
19+
)
20+
1621
require (
1722
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
1823
github.com/beorn7/perks v1.0.1 // indirect
1924
github.com/blang/semver/v4 v4.0.0 // indirect
2025
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
2126
github.com/cespare/xxhash/v2 v2.2.0 // indirect
22-
github.com/davecgh/go-spew v1.1.1 // indirect
23-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
24-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
27+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
28+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
2529
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2630
github.com/felixge/httpsnoop v1.0.3 // indirect
2731
github.com/fsnotify/fsnotify v1.7.0 // indirect
28-
github.com/go-logr/logr v1.4.1 // indirect
32+
github.com/go-logr/logr v1.4.2 // indirect
2933
github.com/go-logr/stdr v1.2.2 // indirect
3034
github.com/go-logr/zapr v1.3.0 // indirect
31-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
32-
github.com/go-openapi/jsonreference v0.20.2 // indirect
33-
github.com/go-openapi/swag v0.22.3 // indirect
34-
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
35+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
36+
github.com/go-openapi/jsonreference v0.21.0 // indirect
37+
github.com/go-openapi/swag v0.23.0 // indirect
38+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3539
github.com/gogo/protobuf v1.3.2 // indirect
3640
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3741
github.com/golang/protobuf v1.5.4 // indirect
3842
github.com/google/cel-go v0.17.8 // indirect
3943
github.com/google/gnostic-models v0.6.8 // indirect
4044
github.com/google/go-cmp v0.6.0 // indirect
4145
github.com/google/gofuzz v1.2.0 // indirect
42-
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
43-
github.com/google/uuid v1.3.0 // indirect
46+
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
47+
github.com/google/uuid v1.6.0 // indirect
4448
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
4549
github.com/imdario/mergo v0.3.6 // indirect
4650
github.com/josharian/intern v1.0.0 // indirect
@@ -51,6 +55,7 @@ require (
5155
github.com/modern-go/reflect2 v1.0.2 // indirect
5256
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5357
github.com/pkg/errors v0.9.1 // indirect
58+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.75.0 // indirect
5459
github.com/prometheus/client_golang v1.18.0 // indirect
5560
github.com/prometheus/client_model v0.5.0 // indirect
5661
github.com/prometheus/common v0.45.0 // indirect
@@ -69,27 +74,25 @@ require (
6974
go.uber.org/zap v1.26.0 // indirect
7075
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
7176
golang.org/x/net v0.33.0 // indirect
72-
golang.org/x/oauth2 v0.12.0 // indirect
77+
golang.org/x/oauth2 v0.21.0 // indirect
7378
golang.org/x/sync v0.10.0 // indirect
7479
golang.org/x/sys v0.28.0 // indirect
7580
golang.org/x/term v0.27.0 // indirect
7681
golang.org/x/text v0.21.0 // indirect
77-
golang.org/x/time v0.3.0 // indirect
82+
golang.org/x/time v0.5.0 // indirect
7883
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
7984
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
80-
google.golang.org/appengine v1.6.7 // indirect
8185
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect
8286
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
8387
google.golang.org/grpc v1.58.3 // indirect
84-
google.golang.org/protobuf v1.33.0 // indirect
88+
google.golang.org/protobuf v1.34.2 // indirect
8589
gopkg.in/inf.v0 v0.9.1 // indirect
8690
gopkg.in/yaml.v2 v2.4.0 // indirect
87-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
88-
k8s.io/apiserver v0.30.1 // indirect
89-
k8s.io/component-base v0.30.1 // indirect
90-
k8s.io/klog/v2 v2.120.1 // indirect
91-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
92-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
91+
k8s.io/apiextensions-apiserver v0.30.2 // indirect
92+
k8s.io/apiserver v0.30.2 // indirect
93+
k8s.io/component-base v0.30.2 // indirect
94+
k8s.io/klog/v2 v2.130.1 // indirect
95+
k8s.io/kube-openapi v0.0.0-20240620174524-b456828f718b // indirect
9396
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect
9497
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
9598
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)