File tree Expand file tree Collapse file tree 3 files changed +48
-6
lines changed Expand file tree Collapse file tree 3 files changed +48
-6
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "sql" : {
3
+ "external" : {
4
+ "addr" : " 0.0.0.0:7875" ,
5
+ "authenticator_kind" : " None" ,
6
+ "allowed_roles" : " Normal" ,
7
+ "enable_tls" : false
8
+ },
9
+ "internal" : {
10
+ "addr" : " 0.0.0.0:7877" ,
11
+ "authenticator_kind" : " None" ,
12
+ "allowed_roles" : " Internal" ,
13
+ "enable_tls" : false
14
+ }
15
+ },
16
+ "http" : {
17
+ "external" : {
18
+ "addr" : " 0.0.0.0:7876" ,
19
+ "authenticator_kind" : " None" ,
20
+ "allowed_roles" : " NormalAndInternal" ,
21
+ "enable_tls" : false ,
22
+ "routes" : {
23
+ "base" : true ,
24
+ "webhook" : true ,
25
+ "internal" : false ,
26
+ "metrics" : false ,
27
+ "profiling" : false
28
+ }
29
+ },
30
+ "internal" : {
31
+ "addr" : " 0.0.0.0:7878" ,
32
+ "authenticator_kind" : " None" ,
33
+ "allowed_roles" : " NormalAndInternal" ,
34
+ "enable_tls" : false ,
35
+ "routes" : {
36
+ "base" : true ,
37
+ "webhook" : true ,
38
+ "internal" : true ,
39
+ "metrics" : true ,
40
+ "profiling" : true
41
+ }
42
+ }
43
+ }
44
+ }
Original file line number Diff line number Diff line change @@ -51,10 +51,9 @@ services:
51
51
- --all-features
52
52
environment :
53
53
MZ_NO_TELEMETRY : 1
54
- MZ_SQL_LISTEN_ADDR : 0.0.0.0:7875
55
- MZ_HTTP_LISTEN_ADDR : 0.0.0.0:7876
56
- MZ_INTERNAL_SQL_LISTEN_ADDR : 0.0.0.0:7877
57
- MZ_INTERNAL_HTTP_LISTEN_ADDR : 0.0.0.0:7878
54
+ MZ_LISTENERS_CONFIG_PATH : /custom-listeners.json
55
+ volumes :
56
+ - ./.github/listener_configs/no_auth.json:/custom-listeners.json
58
57
ports :
59
58
- 7875:7875
60
59
- 7877:7877
@@ -149,7 +148,6 @@ services:
149
148
container_name : provider
150
149
depends_on :
151
150
materialized : {condition: service_healthy}
152
- materialized2 : {condition: service_healthy}
153
151
redpanda : {condition: service_healthy}
154
152
volumes :
155
153
- ./integration:/usr/src/app/integration
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ func Provider(version string) *schema.Provider {
38
38
DefaultFunc : schema .EnvDefaultFunc ("MZ_SSLMODE" , "require" ),
39
39
Description : "For testing purposes, the SSL mode to use." ,
40
40
},
41
- // TODO: Switch name to Admin Endpoint for consistency:
41
+ // TODO: Switch name to Admin Endpoint for consistency
42
42
"endpoint" : {
43
43
Type : schema .TypeString ,
44
44
Optional : true ,
You can’t perform that action at this time.
0 commit comments