File tree 1 file changed +5
-0
lines changed
.werft/jobs/build/installer
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export class Installer {
61
61
this . configureObservability ( slice )
62
62
this . configureAuthProviders ( slice )
63
63
this . configureSSHGateway ( slice )
64
+ this . configurePublicAPIServer ( slice )
64
65
65
66
if ( this . options . analytics ) {
66
67
this . includeAnalytics ( slice )
@@ -143,6 +144,10 @@ export class Installer {
143
144
exec ( `yq w -i ${ this . options . installerConfigPath } sshGatewayHostKey.name "host-key"` )
144
145
}
145
146
147
+ private configurePublicAPIServer ( slice : string ) {
148
+ exec ( `yq w -i ${ this . options . installerConfigPath } experimental.webapp.publicApi.enabled true` , { slice : slice } )
149
+ }
150
+
146
151
private includeAnalytics ( slice : string ) : void {
147
152
exec ( `yq w -i ${ this . options . installerConfigPath } analytics.writer segment` , { slice : slice } ) ;
148
153
exec ( `yq w -i ${ this . options . installerConfigPath } analytics.segmentKey ${ this . options . analytics . token } ` , { slice : slice } ) ;
You can’t perform that action at this time.
0 commit comments