@@ -3,39 +3,47 @@ frontier-app:
3
3
image :
4
4
repository : raystack/frontier
5
5
pullPolicy : IfNotPresent
6
- tag : v0.13 .0
6
+ tag : v0.65 .0
7
7
container :
8
8
command : ["frontier", "server", "start"]
9
9
livenessProbe :
10
- httpGet :
11
- path : /ping
12
- port : 8080
10
+ grpc :
11
+ port : 8081
13
12
readinessProbe :
14
- httpGet :
15
- path : /ping
16
- port : 8080
13
+ grpc :
14
+ port : 8081
17
15
ports :
18
16
- name : rest
19
17
containerPort : 8080
20
18
protocol : TCP
21
19
- name : grpc
22
20
containerPort : 8081
23
21
protocol : TCP
22
+ - name : admin-ui
23
+ containerPort : 3000
24
+ protocol : TCP
25
+ - name : connectrpc
26
+ containerPort : 8082
27
+ protocol : TCP
24
28
service :
25
29
type : ClusterIP
26
30
ports :
27
31
- port : 8080
28
- targetPort : 8080
32
+ targetPort : rest
29
33
protocol : TCP
30
- name : tcp
34
+ name : rest
31
35
- port : 8081
32
- targetPort : 8081
36
+ targetPort : grpc
33
37
protocol : TCP
34
38
name : grpc
35
39
- port : 3000
36
- targetPort : 3000
40
+ targetPort : admin-ui
37
41
protocol : TCP
38
42
name : admin-ui
43
+ - port : 8082
44
+ targetPort : connectrpc
45
+ protocol : TCP
46
+ name : connectrpc
39
47
annotations : {}
40
48
ingress :
41
49
enabled : false
@@ -54,6 +62,55 @@ frontier-app:
54
62
FRONTIER_SPICEDB_PORT : 50051
55
63
FRONTIER_APP_PORT : 8080
56
64
FRONTIER_APP_GRPC_PORT : 8081
65
+ FRONTIER_APP_CONNECT_PORT : 8082
66
+ FRONTIER_LOG_LEVEL : info
67
+ FRONTIER_DB_DRIVER : postgres
68
+ FRONTIER_APP_BILLING_REFRESH_INTERVAL_CUSTOMER : 0
69
+ FRONTIER_APP_BILLING_REFRESH_INTERVAL_SUBSCRIPTION : 0
70
+ FRONTIER_APP_BILLING_REFRESH_INTERVAL_CHECKOUT : 0
71
+ FRONTIER_APP_BILLING_REFRESH_INTERVAL_INVOICE : 0
72
+ secretConfig :
73
+ FRONTIER_DB_URL :
74
+ FRONTIER_SPICEDB_PRE_SHARED_KEY :
75
+
76
+ frontier-worker :
77
+ enabled : true
78
+ replicaCount : 1
79
+ image :
80
+ repository : raystack/frontier
81
+ pullPolicy : IfNotPresent
82
+ tag : v0.65.0
83
+ container :
84
+ command : ["frontier", "server", "start"]
85
+ livenessProbe :
86
+ grpc :
87
+ port : 8081
88
+ readinessProbe :
89
+ grpc :
90
+ port : 8081
91
+ ports :
92
+ - name : rest
93
+ containerPort : 8080
94
+ protocol : TCP
95
+ - name : grpc
96
+ containerPort : 8081
97
+ protocol : TCP
98
+ - name : admin-ui
99
+ containerPort : 3000
100
+ protocol : TCP
101
+ - name : connectrpc
102
+ containerPort : 8082
103
+ protocol : TCP
104
+ service :
105
+ enabled : false
106
+ ingress :
107
+ enabled : false
108
+ config :
109
+ FRONTIER_SPICEDB_HOST : spicedb.namespace.svc.local
110
+ FRONTIER_SPICEDB_PORT : 50051
111
+ FRONTIER_APP_PORT : 8080
112
+ FRONTIER_APP_GRPC_PORT : 8081
113
+ FRONTIER_APP_CONNECT_PORT : 8082
57
114
FRONTIER_LOG_LEVEL : info
58
115
FRONTIER_DB_DRIVER : postgres
59
116
secretConfig :
0 commit comments