File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
components/buildless-serverless Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ func main() {
170
170
os .Exit (1 )
171
171
}
172
172
173
- startInternalHTTPServer (cfg .CLIRenderManifestPort )
173
+ startInternalHTTPServer (cfg .DummyPort )
174
174
175
175
setupLog .Info ("starting manager" )
176
176
if err := mgr .Start (ctrl .SetupSignalHandler ()); err != nil {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ type FunctionConfig struct {
24
24
FunctionTraceCollectorEndpoint string `yaml:"functionTraceCollectorEndpoint"`
25
25
FunctionPublisherProxyAddress string `yaml:"functionPublisherProxyAddress"`
26
26
ResourceConfig ResourceConfig `yaml:"resourcesConfiguration"`
27
- CLIRenderManifestPort string `yaml:"cliRenderManifestPort"`
27
+ DummyPort string `yaml:"cliRenderManifestPort"`
28
28
}
29
29
30
30
func defaultFunctionConfig () FunctionConfig {
@@ -38,7 +38,7 @@ func defaultFunctionConfig() FunctionConfig {
38
38
FunctionReadyRequeueDuration : time .Minute * 5 ,
39
39
PackageRegistryConfigSecretName : "buildless-serverless-package-registry-config" ,
40
40
FunctionPublisherProxyAddress : "http://eventing-publisher-proxy.kyma-system.svc.cluster.local/publish" ,
41
- CLIRenderManifestPort : ":12137" ,
41
+ DummyPort : ":12137" ,
42
42
}
43
43
}
44
44
You can’t perform that action at this time.
0 commit comments