Skip to content

Commit 5f2fd33

Browse files
committed
with sample
Signed-off-by: Daniele Martinoli <dmartino@redhat.com>
1 parent 99455e5 commit 5f2fd33

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
apiVersion: feast.dev/v1alpha1
2+
kind: FeatureStore
3+
metadata:
4+
name: sample-oidc-auth
5+
spec:
6+
feastProject: my_project
7+
services:
8+
onlineStore:
9+
image: quay.io/dmartino/feature-server:0.3
10+
persistence:
11+
file:
12+
path: /data/online_store.db
13+
offlineStore:
14+
image: quay.io/dmartino/feature-server:0.3
15+
persistence:
16+
file:
17+
type: dask
18+
registry:
19+
local:
20+
image: quay.io/dmartino/feature-server:0.3
21+
persistence:
22+
file:
23+
path: /data/registry.db
24+
authz:
25+
oidc:
26+
secretRef:
27+
name: oidc-secret
28+
---
29+
kind: Secret
30+
apiVersion: v1
31+
metadata:
32+
name: oidc-secret
33+
stringData:
34+
client_id: client_id
35+
auth_discovery_url: auth_discovery_url
36+
client_secret: client_secret
37+
username: username
38+
password: password

0 commit comments

Comments
 (0)