Skip to content

Commit d1ee956

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 801b564 commit d1ee956

File tree

3 files changed

+93
-66
lines changed

3 files changed

+93
-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/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

+91-65
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
@@ -215,16 +223,10 @@ type CommonStartConfig struct {
215223

216224
shouldInitializeData *bool
217225
shouldCreateUser *bool
218-
219-
containerNetworkErr chan error
220-
}
221-
222-
func (c *CommonStartConfig) addTask(name string, fn taskFunc) {
223-
c.addConditionalTask(name, fn, nil)
224226
}
225227

226-
func (c *CommonStartConfig) addConditionalTask(name string, fn taskFunc, condition conditionFunc) {
227-
c.Tasks = append(c.Tasks, task{name: name, fn: fn, condition: condition})
228+
func (c *CommonStartConfig) addTask(t task) {
229+
c.Tasks = append(c.Tasks, t)
228230
}
229231

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

262264
// Start runs the start tasks ensuring that they are executed in sequence
263265
func (c *CommonStartConfig) Start(out io.Writer) error {
266+
taskPrinter := NewTaskPrinter(out)
264267
for _, task := range c.Tasks {
265268
if task.condition != nil && !task.condition() {
266269
continue
267270
}
268-
c.TaskPrinter.StartTask(task.name)
269-
w := c.TaskPrinter.TaskWriter()
271+
taskPrinter.StartTask(task.name)
272+
w := taskPrinter.TaskWriter()
270273
err := task.fn(w)
271274
if err != nil {
272-
c.TaskPrinter.Failure(err)
275+
taskPrinter.Failure(err)
273276
return err
274277
}
275-
c.TaskPrinter.Success()
278+
taskPrinter.Success()
276279
}
277280
return nil
278281
}
@@ -287,50 +290,51 @@ func (config *ClientStartConfig) Bind(flags *pflag.FlagSet) {
287290
}
288291

289292
func (c *CommonStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command) error {
290-
c.TaskPrinter = NewTaskPrinter(c.Out)
291293
c.originalFactory = f
292294
c.command = cmd
293295

294296
if len(c.ImageVersion) == 0 {
295297
c.ImageVersion = defaultImageVersion()
296298
}
297299

298-
c.addTask("Checking OpenShift client", c.CheckOpenShiftClient)
300+
c.addTask(simpleTask("Checking OpenShift client", c.CheckOpenShiftClient))
299301

300-
c.addConditionalTask("Create Docker machine", c.CreateDockerMachine, func() bool { return c.ShouldCreateDockerMachine })
302+
c.addTask(conditionalTask("Create Docker machine", c.CreateDockerMachine, func() bool { return c.ShouldCreateDockerMachine }))
301303
// Get a Docker client.
302304
// If a Docker machine was specified, make sure that the machine is
303305
// running. Otherwise, use environment variables.
304-
c.addTask("Checking Docker client", c.GetDockerClient)
306+
c.addTask(simpleTask("Checking Docker client", c.GetDockerClient))
305307

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

309311
// Check for an OpenShift container. If one exists and is running, exit.
310312
// If one exists but not running, delete it.
311-
c.addTask("Checking for existing OpenShift container", c.CheckExistingOpenShiftContainer)
313+
c.addTask(simpleTask("Checking for existing OpenShift container", c.CheckExistingOpenShiftContainer))
312314

313315
// Ensure that the OpenShift Docker image is available. If not present,
314316
// pull it.
315-
c.addTask(fmt.Sprintf("Checking for %s image", c.openshiftImage()), c.CheckOpenShiftImage)
317+
t := simpleTask(fmt.Sprintf("Checking for %s image", c.openshiftImage()), c.CheckOpenShiftImage)
318+
t.stdOut = true
319+
c.addTask(t)
316320

317321
// Ensure that the Docker daemon has the right --insecure-registry argument. If
318322
// not, then exit.
319323
if !c.SkipRegistryCheck {
320-
c.addTask("Checking Docker daemon configuration", c.CheckDockerInsecureRegistry)
324+
c.addTask(simpleTask("Checking Docker daemon configuration", c.CheckDockerInsecureRegistry))
321325
}
322326

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

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

330334
// Ensure that host directories exist.
331335
// If not using the nsenter mounter, create a volume share on the host machine to
332336
// mount OpenShift volumes.
333-
c.addTask("Creating host directories", c.EnsureHostDirectories)
337+
c.addTask(simpleTask("Creating host directories", c.EnsureHostDirectories))
334338

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

353357
return nil
354358
}
@@ -360,47 +364,49 @@ func (c *ClientStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
360364
}
361365

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

365369
// 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)
370+
c.addTask(conditionalTask("Adding default OAuthClient redirect URIs", c.EnsureDefaultRedirectURIs, c.ShouldInitializeData))
367371

368372
// Install a registry
369-
c.addConditionalTask("Installing registry", c.InstallRegistry, c.ShouldInitializeData)
373+
c.addTask(conditionalTask("Installing registry", c.InstallRegistry, c.ShouldInitializeData))
370374

371375
// Install a router
372-
c.addConditionalTask("Installing router", c.InstallRouter, c.ShouldInitializeData)
376+
c.addTask(conditionalTask("Installing router", c.InstallRouter, c.ShouldInitializeData))
373377

374378
// Install metrics
375-
c.addConditionalTask("Installing metrics", c.InstallMetrics, func() bool {
379+
c.addTask(conditionalTask("Installing metrics", c.InstallMetrics, func() bool {
376380
return c.ShouldInstallMetrics && c.ShouldInitializeData()
377-
})
381+
}))
378382

379383
// Import default image streams
380-
c.addConditionalTask("Importing image streams", c.ImportImageStreams, c.ShouldInitializeData)
384+
c.addTask(conditionalTask("Importing image streams", c.ImportImageStreams, c.ShouldInitializeData))
381385

382386
// Import templates
383-
c.addConditionalTask("Importing templates", c.ImportTemplates, c.ShouldInitializeData)
387+
c.addTask(conditionalTask("Importing templates", c.ImportTemplates, c.ShouldInitializeData))
384388

385389
// Install logging
386-
c.addConditionalTask("Installing logging", c.InstallLogging, func() bool {
390+
c.addTask(conditionalTask("Installing logging", c.InstallLogging, func() bool {
387391
return c.ShouldInstallLogging && c.ShouldInitializeData()
388-
})
392+
}))
389393

390394
// Login with an initial default user
391-
c.addConditionalTask("Login to server", c.Login, c.ShouldCreateUser)
395+
c.addTask(conditionalTask("Login to server", c.Login, c.ShouldCreateUser))
392396

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

396400
// Remove temporary directory
397-
c.addTask("Removing temporary directory", c.RemoveTemporaryDirectory)
401+
c.addTask(simpleTask("Removing temporary directory", c.RemoveTemporaryDirectory))
398402

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

402408
// Display server information
403-
c.addTask("Server Information", c.ServerInfo)
409+
c.addTask(simpleTask("Server Information", c.ServerInfo))
404410

405411
return nil
406412
}
@@ -416,18 +422,44 @@ func (c *ClientStartConfig) Validate(out, errout io.Writer) error {
416422

417423
// Start runs the start tasks ensuring that they are executed in sequence
418424
func (c *ClientStartConfig) Start(out io.Writer) error {
419-
for _, task := range c.Tasks {
420-
if task.condition != nil && !task.condition() {
421-
continue
425+
var detailedOut io.Writer
426+
427+
// When loglevel > 0, just use stdout to write all messages
428+
if glog.V(1) {
429+
detailedOut = out
430+
} else {
431+
fmt.Fprintf(out, "Starting OpenShift using %s ...\n", c.openshiftImage())
432+
detailedOut = &bytes.Buffer{}
433+
}
434+
435+
taskPrinter := NewTaskPrinter(detailedOut)
436+
startError := func() error {
437+
for _, task := range c.Tasks {
438+
if task.condition != nil && !task.condition() {
439+
continue
440+
}
441+
taskPrinter.StartTask(task.name)
442+
w := taskPrinter.TaskWriter()
443+
if task.stdOut && !bool(glog.V(1)) {
444+
w = io.MultiWriter(w, out)
445+
}
446+
err := task.fn(w)
447+
if err != nil {
448+
taskPrinter.Failure(err)
449+
return err
450+
}
451+
taskPrinter.Success()
422452
}
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
453+
return nil
454+
}()
455+
if startError != nil {
456+
if !bool(glog.V(1)) {
457+
fmt.Fprintf(out, "%s", detailedOut.(*bytes.Buffer).String())
429458
}
430-
c.TaskPrinter.Success()
459+
return startError
460+
}
461+
if !bool(glog.V(1)) {
462+
c.ServerInfo(out)
431463
}
432464
return nil
433465
}
@@ -790,12 +822,6 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
790822
return err
791823
}
792824

793-
// Start a container networking test
794-
c.containerNetworkErr = make(chan error)
795-
go func() {
796-
c.containerNetworkErr <- c.OpenShiftHelper().TestContainerNetworking()
797-
}()
798-
799825
// Setup persistent storage
800826
osClient, kClient, err := c.Clients()
801827
if err != nil {
@@ -816,14 +842,15 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
816842
}
817843

818844
func (c *ClientStartConfig) CheckContainerNetworking(out io.Writer) error {
819-
networkErr := <-c.containerNetworkErr
820-
if networkErr != nil {
845+
// Start a container networking test
846+
err := c.OpenShiftHelper().TestContainerNetworking()
847+
if err != nil {
821848
return errors.NewError("containers cannot communicate with the OpenShift master").
822849
WithDetails("The cluster was started. However, the container networking test failed.").
823850
WithSolution(
824851
fmt.Sprintf("Ensure that access to ports tcp/8443, udp/53 and udp/8053 is allowed on %s.\n"+
825852
"You may need to open these ports on your machine's firewall.", c.ServerIP)).
826-
WithCause(networkErr)
853+
WithCause(err)
827854
}
828855
return nil
829856
}
@@ -934,14 +961,13 @@ func (c *ClientStartConfig) ServerInfo(out io.Writer) error {
934961
if len(c.PublicHostname) > 0 {
935962
masterURL = fmt.Sprintf("https://%s:8443", c.PublicHostname)
936963
}
937-
msg := fmt.Sprintf("OpenShift server started.\n"+
964+
msg := fmt.Sprintf("OpenShift server started.\n\n"+
938965
"The server is accessible via web console at:\n"+
939966
" %s\n\n%s%s", masterURL, metricsInfo, loggingInfo)
940967

941968
if c.ShouldCreateUser() {
942969
msg += fmt.Sprintf("You are logged in as:\n"+
943-
" User: %s\n"+
944-
" Password: %s\n\n", initialUser, initialPassword)
970+
" User: %s\n\n", initialUser)
945971
}
946972

947973
msg += "To login as administrator:\n" +

0 commit comments

Comments
 (0)