File tree 2 files changed +25
-11
lines changed
2 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 14
14
# Dependency directories (remove the comment below to include it)
15
15
# vendor/
16
16
.idea /
17
+ .DS_Store
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ frontier-app:
3
3
image :
4
4
repository : raystack/frontier
5
5
pullPolicy : IfNotPresent
6
- tag : 0.7.1
6
+ tag : 0.7.4
7
7
container :
8
8
command : ["frontier", "server", "start"]
9
9
livenessProbe :
@@ -63,28 +63,41 @@ spicedb:
63
63
replicaCount : 2
64
64
image :
65
65
repository : quay.io/authzed/spicedb
66
- tag : v1.19.1
66
+ tag : v1.25.0
67
67
secretConfig :
68
68
SPICEDB_GRPC_PRESHARED_KEY :
69
69
SPICEDB_DATASTORE_CONN_URI :
70
70
config :
71
71
SPICEDB_LOG_LEVEL : info
72
72
SPICEDB_DATASTORE_ENGINE :
73
+ SPICEDB_GRPC_ENABLED : " true"
74
+ SPICEDB_HTTP_ENABLED : " true"
73
75
SPICEDB_GRPC_SHUTDOWN_GRACE_PERIOD : " 5s"
74
76
container :
75
77
ports :
76
- - name : tcp
77
- containerPort : 50051
78
- protocol : TCP
78
+ - containerPort : 50051
79
+ protocol : TCP
80
+ - containerPort : 8443
81
+ protocol : TCP
79
82
livenessProbe :
80
- httpGet :
81
- path : /
82
- port : 8080
83
+ exec :
84
+ command : ["grpc_health_probe", "-v", "-addr=localhost:50051"]
83
85
readinessProbe :
84
- httpGet :
85
- path : /
86
- port : 8080
86
+ exec :
87
+ command : ["grpc_health_probe", "-v", "-addr=localhost:50051"]
87
88
command : ["spicedb", "serve"]
89
+ service :
90
+ type : ClusterIP
91
+ ports :
92
+ - port : 80
93
+ name : rest
94
+ targetPort : 8443
95
+ protocol : TCP
96
+ - port : 50051
97
+ name : grpc
98
+ targetPort : 50051
99
+ protocol : TCP
100
+ annotations : {}
88
101
ingress :
89
102
enabled : true
90
103
annotations :
You can’t perform that action at this time.
0 commit comments