Skip to content

Commit 55dc4ef

Browse files
committed
Streamline cluster up output
Outputs previous messages when either an error occurs during startup or loglevel > 0. Now only executes container network test if loglevel > 0 to speed up startup time.
1 parent 44d4f23 commit 55dc4ef

File tree

4 files changed

+116
-66
lines changed

4 files changed

+116
-66
lines changed

pkg/bootstrap/docker/join.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (c *ClientJoinConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
101101
}
102102

103103
// Create an OpenShift configuration and start a container that uses it.
104-
c.addTask("Joining OpenShift cluster", c.StartOpenShiftNode)
104+
c.addTask(simpleTask("Joining OpenShift cluster", c.StartOpenShiftNode))
105105

106106
return nil
107107
}

pkg/bootstrap/docker/openshift/cnetwork.go

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,39 @@
11
package openshift
22

3+
import (
4+
"fmt"
5+
)
6+
37
const podNetworkTestCmd = `#!/bin/bash
48
set -e
59
echo 'Testing connectivity to master API'
6-
for i in {1..40}; do
7-
if curl -s -S -k -m 1 https://172.30.0.1:8443; then
8-
continue
10+
failed=0
11+
for i in {1..40}; do
12+
if curl -s -S -k -m 1 https://${MASTER_IP}:8443; then
13+
failed=0
14+
break
15+
else
16+
failed=1
917
fi
1018
done
11-
if [[ ! $? -eq 0 ]]; then
19+
if [[ failed -eq 1 ]]; then
1220
exit 1
1321
fi
1422
echo 'Testing connectivity to master DNS server'
1523
for i in {1..40}; do
1624
if curl -s -S -k -m 1 https://kubernetes.default.svc.cluster.local; then
1725
exit 0
1826
fi
19-
sleep 1
2027
done
2128
exit 1
2229
`
2330

2431
// TestContainerNetworking launches a container that will check whether the container
2532
// can communicate with the master API and DNS endpoints.
26-
func (h *Helper) TestContainerNetworking() error {
33+
func (h *Helper) TestContainerNetworking(ip string) error {
2734
_, err := h.runHelper.New().Image(h.image).
2835
DiscardContainer().
36+
Env(fmt.Sprintf("MASTER_IP=%s", ip)).
2937
DNS("172.30.0.1").
3038
Entrypoint("/bin/bash").
3139
Command("-c", podNetworkTestCmd).

pkg/bootstrap/docker/openshift/helper.go

+1
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,7 @@ func GetConfigFromContainer(client *docker.Client) (*configapi.MasterConfig, err
617617
func (h *Helper) serverVersion() (semver.Version, error) {
618618
versionText, _, _, err := h.runHelper.New().Image(h.image).
619619
Command("version").
620+
DiscardContainer().
620621
Output()
621622
if err != nil {
622623
return semver.Version{}, err

pkg/bootstrap/docker/up.go

+100-59
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,15 @@ type task struct {
162162
name string
163163
fn taskFunc
164164
condition conditionFunc
165+
stdOut bool // true if task's output should go directly to stdout
166+
}
167+
168+
func simpleTask(name string, fn taskFunc) task {
169+
return task{name: name, fn: fn}
170+
}
171+
172+
func conditionalTask(name string, fn taskFunc, condition conditionFunc) task {
173+
return task{name: name, fn: fn, condition: condition}
165174
}
166175

167176
type CommonStartConfig struct {
@@ -175,9 +184,8 @@ type CommonStartConfig struct {
175184
ShouldInstallLogging bool
176185
PortForwarding bool
177186

178-
Out io.Writer
179-
TaskPrinter *TaskPrinter
180-
Tasks []task
187+
Out io.Writer
188+
Tasks []task
181189

182190
HostName string
183191
LocalConfigDir string
@@ -219,12 +227,8 @@ type CommonStartConfig struct {
219227
containerNetworkErr chan error
220228
}
221229

222-
func (c *CommonStartConfig) addTask(name string, fn taskFunc) {
223-
c.addConditionalTask(name, fn, nil)
224-
}
225-
226-
func (c *CommonStartConfig) addConditionalTask(name string, fn taskFunc, condition conditionFunc) {
227-
c.Tasks = append(c.Tasks, task{name: name, fn: fn, condition: condition})
230+
func (c *CommonStartConfig) addTask(t task) {
231+
c.Tasks = append(c.Tasks, t)
228232
}
229233

230234
func (config *CommonStartConfig) Bind(flags *pflag.FlagSet) {
@@ -261,18 +265,19 @@ func (c *CommonStartConfig) Validate(out io.Writer) error {
261265

262266
// Start runs the start tasks ensuring that they are executed in sequence
263267
func (c *CommonStartConfig) Start(out io.Writer) error {
268+
taskPrinter := NewTaskPrinter(out)
264269
for _, task := range c.Tasks {
265270
if task.condition != nil && !task.condition() {
266271
continue
267272
}
268-
c.TaskPrinter.StartTask(task.name)
269-
w := c.TaskPrinter.TaskWriter()
273+
taskPrinter.StartTask(task.name)
274+
w := taskPrinter.TaskWriter()
270275
err := task.fn(w)
271276
if err != nil {
272-
c.TaskPrinter.Failure(err)
277+
taskPrinter.Failure(err)
273278
return err
274279
}
275-
c.TaskPrinter.Success()
280+
taskPrinter.Success()
276281
}
277282
return nil
278283
}
@@ -287,50 +292,51 @@ func (config *ClientStartConfig) Bind(flags *pflag.FlagSet) {
287292
}
288293

289294
func (c *CommonStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command) error {
290-
c.TaskPrinter = NewTaskPrinter(c.Out)
291295
c.originalFactory = f
292296
c.command = cmd
293297

294298
if len(c.ImageVersion) == 0 {
295299
c.ImageVersion = defaultImageVersion()
296300
}
297301

298-
c.addTask("Checking OpenShift client", c.CheckOpenShiftClient)
302+
c.addTask(simpleTask("Checking OpenShift client", c.CheckOpenShiftClient))
299303

300-
c.addConditionalTask("Create Docker machine", c.CreateDockerMachine, func() bool { return c.ShouldCreateDockerMachine })
304+
c.addTask(conditionalTask("Create Docker machine", c.CreateDockerMachine, func() bool { return c.ShouldCreateDockerMachine }))
301305
// Get a Docker client.
302306
// If a Docker machine was specified, make sure that the machine is
303307
// running. Otherwise, use environment variables.
304-
c.addTask("Checking Docker client", c.GetDockerClient)
308+
c.addTask(simpleTask("Checking Docker client", c.GetDockerClient))
305309

306310
// Check that we have the minimum Docker version available to run OpenShift
307-
c.addTask("Checking Docker version", c.CheckDockerVersion)
311+
c.addTask(simpleTask("Checking Docker version", c.CheckDockerVersion))
308312

309313
// Check for an OpenShift container. If one exists and is running, exit.
310314
// If one exists but not running, delete it.
311-
c.addTask("Checking for existing OpenShift container", c.CheckExistingOpenShiftContainer)
315+
c.addTask(simpleTask("Checking for existing OpenShift container", c.CheckExistingOpenShiftContainer))
312316

313317
// Ensure that the OpenShift Docker image is available. If not present,
314318
// pull it.
315-
c.addTask(fmt.Sprintf("Checking for %s image", c.openshiftImage()), c.CheckOpenShiftImage)
319+
t := simpleTask(fmt.Sprintf("Checking for %s image", c.openshiftImage()), c.CheckOpenShiftImage)
320+
t.stdOut = true
321+
c.addTask(t)
316322

317323
// Ensure that the Docker daemon has the right --insecure-registry argument. If
318324
// not, then exit.
319325
if !c.SkipRegistryCheck {
320-
c.addTask("Checking Docker daemon configuration", c.CheckDockerInsecureRegistry)
326+
c.addTask(simpleTask("Checking Docker daemon configuration", c.CheckDockerInsecureRegistry))
321327
}
322328

323329
// Ensure that ports used by OpenShift are available on the host machine
324-
c.addTask("Checking for available ports", c.CheckAvailablePorts)
330+
c.addTask(simpleTask("Checking for available ports", c.CheckAvailablePorts))
325331

326332
// Check whether the Docker host has the right binaries to use Kubernetes' nsenter mounter
327333
// If not, use a shared volume to mount volumes on OpenShift
328-
c.addTask("Checking type of volume mount", c.CheckNsenterMounter)
334+
c.addTask(simpleTask("Checking type of volume mount", c.CheckNsenterMounter))
329335

330336
// Ensure that host directories exist.
331337
// If not using the nsenter mounter, create a volume share on the host machine to
332338
// mount OpenShift volumes.
333-
c.addTask("Creating host directories", c.EnsureHostDirectories)
339+
c.addTask(simpleTask("Creating host directories", c.EnsureHostDirectories))
334340

335341
// Determine an IP to use for OpenShift.
336342
// The result is that c.ServerIP will be populated with
@@ -348,7 +354,7 @@ func (c *CommonStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
348354
// included in the server's certificate. These include any IPs that are currently
349355
// assigned to the Docker host (hostname -I)
350356
// Each IP is tested to ensure that it can be accessed from the current client
351-
c.addTask("Finding server IP", c.DetermineServerIP)
357+
c.addTask(simpleTask("Finding server IP", c.DetermineServerIP))
352358

353359
return nil
354360
}
@@ -360,47 +366,49 @@ func (c *ClientStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
360366
}
361367

362368
// Create an OpenShift configuration and start a container that uses it.
363-
c.addTask("Starting OpenShift container", c.StartOpenShift)
369+
c.addTask(simpleTask("Starting OpenShift container", c.StartOpenShift))
364370

365371
// Add default redirect URIs to an OAuthClient to enable local web-console development.
366-
c.addConditionalTask("Adding default OAuthClient redirect URIs", c.EnsureDefaultRedirectURIs, c.ShouldInitializeData)
372+
c.addTask(conditionalTask("Adding default OAuthClient redirect URIs", c.EnsureDefaultRedirectURIs, c.ShouldInitializeData))
367373

368374
// Install a registry
369-
c.addConditionalTask("Installing registry", c.InstallRegistry, c.ShouldInitializeData)
375+
c.addTask(conditionalTask("Installing registry", c.InstallRegistry, c.ShouldInitializeData))
370376

371377
// Install a router
372-
c.addConditionalTask("Installing router", c.InstallRouter, c.ShouldInitializeData)
378+
c.addTask(conditionalTask("Installing router", c.InstallRouter, c.ShouldInitializeData))
373379

374380
// Install metrics
375-
c.addConditionalTask("Installing metrics", c.InstallMetrics, func() bool {
381+
c.addTask(conditionalTask("Installing metrics", c.InstallMetrics, func() bool {
376382
return c.ShouldInstallMetrics && c.ShouldInitializeData()
377-
})
383+
}))
378384

379385
// Import default image streams
380-
c.addConditionalTask("Importing image streams", c.ImportImageStreams, c.ShouldInitializeData)
386+
c.addTask(conditionalTask("Importing image streams", c.ImportImageStreams, c.ShouldInitializeData))
381387

382388
// Import templates
383-
c.addConditionalTask("Importing templates", c.ImportTemplates, c.ShouldInitializeData)
389+
c.addTask(conditionalTask("Importing templates", c.ImportTemplates, c.ShouldInitializeData))
384390

385391
// Install logging
386-
c.addConditionalTask("Installing logging", c.InstallLogging, func() bool {
392+
c.addTask(conditionalTask("Installing logging", c.InstallLogging, func() bool {
387393
return c.ShouldInstallLogging && c.ShouldInitializeData()
388-
})
394+
}))
389395

390396
// Login with an initial default user
391-
c.addConditionalTask("Login to server", c.Login, c.ShouldCreateUser)
397+
c.addTask(conditionalTask("Login to server", c.Login, c.ShouldCreateUser))
392398

393399
// Create an initial project
394-
c.addConditionalTask(fmt.Sprintf("Creating initial project %q", initialProjectName), c.CreateProject, c.ShouldCreateUser)
400+
c.addTask(conditionalTask(fmt.Sprintf("Creating initial project %q", initialProjectName), c.CreateProject, c.ShouldCreateUser))
395401

396402
// Remove temporary directory
397-
c.addTask("Removing temporary directory", c.RemoveTemporaryDirectory)
403+
c.addTask(simpleTask("Removing temporary directory", c.RemoveTemporaryDirectory))
398404

399-
// Check container networking
400-
c.addTask("Checking container networking", c.CheckContainerNetworking)
405+
// Check container networking (only when loglevel > 0)
406+
if glog.V(1) {
407+
c.addTask(simpleTask("Checking container networking", c.CheckContainerNetworking))
408+
}
401409

402410
// Display server information
403-
c.addTask("Server Information", c.ServerInfo)
411+
c.addTask(simpleTask("Server Information", c.ServerInfo))
404412

405413
return nil
406414
}
@@ -416,18 +424,44 @@ func (c *ClientStartConfig) Validate(out, errout io.Writer) error {
416424

417425
// Start runs the start tasks ensuring that they are executed in sequence
418426
func (c *ClientStartConfig) Start(out io.Writer) error {
419-
for _, task := range c.Tasks {
420-
if task.condition != nil && !task.condition() {
421-
continue
427+
var detailedOut io.Writer
428+
429+
// When loglevel > 0, just use stdout to write all messages
430+
if glog.V(1) {
431+
detailedOut = out
432+
} else {
433+
fmt.Fprintf(out, "Starting OpenShift using %s ...\n", c.openshiftImage())
434+
detailedOut = &bytes.Buffer{}
435+
}
436+
437+
taskPrinter := NewTaskPrinter(detailedOut)
438+
startError := func() error {
439+
for _, task := range c.Tasks {
440+
if task.condition != nil && !task.condition() {
441+
continue
442+
}
443+
taskPrinter.StartTask(task.name)
444+
w := taskPrinter.TaskWriter()
445+
if task.stdOut && !bool(glog.V(1)) {
446+
w = io.MultiWriter(w, out)
447+
}
448+
err := task.fn(w)
449+
if err != nil {
450+
taskPrinter.Failure(err)
451+
return err
452+
}
453+
taskPrinter.Success()
422454
}
423-
c.TaskPrinter.StartTask(task.name)
424-
w := c.TaskPrinter.TaskWriter()
425-
err := task.fn(w)
426-
if err != nil {
427-
c.TaskPrinter.Failure(err)
428-
return err
455+
return nil
456+
}()
457+
if startError != nil {
458+
if !bool(glog.V(1)) {
459+
fmt.Fprintf(out, "%s", detailedOut.(*bytes.Buffer).String())
429460
}
430-
c.TaskPrinter.Success()
461+
return startError
462+
}
463+
if !bool(glog.V(1)) {
464+
c.ServerInfo(out)
431465
}
432466
return nil
433467
}
@@ -790,10 +824,15 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
790824
return err
791825
}
792826

827+
serverIP, err := c.OpenShiftHelper().ServerIP()
828+
if err != nil {
829+
return err
830+
}
831+
793832
// Start a container networking test
794833
c.containerNetworkErr = make(chan error)
795834
go func() {
796-
c.containerNetworkErr <- c.OpenShiftHelper().TestContainerNetworking()
835+
c.containerNetworkErr <- c.OpenShiftHelper().TestContainerNetworking(serverIP)
797836
}()
798837

799838
// Setup persistent storage
@@ -816,13 +855,17 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
816855
}
817856

818857
func (c *ClientStartConfig) CheckContainerNetworking(out io.Writer) error {
858+
serverIP, err := c.OpenShiftHelper().ServerIP()
859+
if err != nil {
860+
return err
861+
}
819862
networkErr := <-c.containerNetworkErr
820863
if networkErr != nil {
821864
return errors.NewError("containers cannot communicate with the OpenShift master").
822865
WithDetails("The cluster was started. However, the container networking test failed.").
823866
WithSolution(
824867
fmt.Sprintf("Ensure that access to ports tcp/8443, udp/53 and udp/8053 is allowed on %s.\n"+
825-
"You may need to open these ports on your machine's firewall.", c.ServerIP)).
868+
"You may need to open these ports on your machine's firewall.", serverIP)).
826869
WithCause(networkErr)
827870
}
828871
return nil
@@ -934,19 +977,17 @@ func (c *ClientStartConfig) ServerInfo(out io.Writer) error {
934977
if len(c.PublicHostname) > 0 {
935978
masterURL = fmt.Sprintf("https://%s:8443", c.PublicHostname)
936979
}
937-
msg := fmt.Sprintf("OpenShift server started.\n"+
980+
msg := fmt.Sprintf("OpenShift server started.\n\n"+
938981
"The server is accessible via web console at:\n"+
939982
" %s\n\n%s%s", masterURL, metricsInfo, loggingInfo)
940983

941984
if c.ShouldCreateUser() {
942985
msg += fmt.Sprintf("You are logged in as:\n"+
943-
" User: %s\n"+
944-
" Password: %s\n\n", initialUser, initialPassword)
986+
" User: %s\n\n", initialUser)
987+
msg += "To login as administrator:\n" +
988+
" oc login -u system:admin\n\n"
945989
}
946990

947-
msg += "To login as administrator:\n" +
948-
" oc login -u system:admin\n\n"
949-
950991
msg += c.checkProxySettings()
951992

952993
fmt.Fprintf(out, msg)

0 commit comments

Comments
 (0)