Skip to content

Commit e10cf99

Browse files
committed
integration fixes
1 parent 0f6f2c6 commit e10cf99

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

framework/components/clnode/clnode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ func newNode(ctx context.Context, in *Input, pgOut *postgres.Output) (*NodeOut,
357357
APIAuthUser: DefaultAPIUser,
358358
APIAuthPassword: DefaultAPIPassword,
359359
ContainerName: containerName,
360-
ExternalURL: fmt.Sprintf("http://%s:%s", fmt.Sprintf("%s-svc", containerName), DefaultHTTPPort),
360+
ExternalURL: fmt.Sprintf("http://%s:%d", fmt.Sprintf("%s-svc", containerName), in.Node.HTTPPort),
361361
InternalURL: fmt.Sprintf("http://%s:%s", containerName, DefaultHTTPPort),
362362
InternalP2PUrl: fmt.Sprintf("http://%s:%s", containerName, DefaultP2PPort),
363363
}, nil

framework/pods/pods.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import (
1111
"strings"
1212
"time"
1313

14-
"github.com/rs/zerolog/log"
15-
1614
"github.com/google/uuid"
1715
appsv1 "k8s.io/api/apps/v1"
1816
corev1 "k8s.io/api/core/v1"
@@ -293,7 +291,6 @@ func (n *App) generate() error {
293291
// Transform container command
294292
if podConfig.Command != nil {
295293
container.Command = strings.Split(*podConfig.Command, " ")
296-
log.Printf("Container command: %s", *podConfig.Command)
297294
}
298295

299296
// Override replicas

0 commit comments

Comments
 (0)