@@ -162,6 +162,15 @@ type task struct {
162
162
name string
163
163
fn taskFunc
164
164
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 }
165
174
}
166
175
167
176
type CommonStartConfig struct {
@@ -175,9 +184,8 @@ type CommonStartConfig struct {
175
184
ShouldInstallLogging bool
176
185
PortForwarding bool
177
186
178
- Out io.Writer
179
- TaskPrinter * TaskPrinter
180
- Tasks []task
187
+ Out io.Writer
188
+ Tasks []task
181
189
182
190
HostName string
183
191
LocalConfigDir string
@@ -215,16 +223,10 @@ type CommonStartConfig struct {
215
223
216
224
shouldInitializeData * bool
217
225
shouldCreateUser * bool
218
-
219
- containerNetworkErr chan error
220
- }
221
-
222
- func (c * CommonStartConfig ) addTask (name string , fn taskFunc ) {
223
- c .addConditionalTask (name , fn , nil )
224
226
}
225
227
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 )
228
230
}
229
231
230
232
func (config * CommonStartConfig ) Bind (flags * pflag.FlagSet ) {
@@ -261,18 +263,19 @@ func (c *CommonStartConfig) Validate(out io.Writer) error {
261
263
262
264
// Start runs the start tasks ensuring that they are executed in sequence
263
265
func (c * CommonStartConfig ) Start (out io.Writer ) error {
266
+ taskPrinter := NewTaskPrinter (out )
264
267
for _ , task := range c .Tasks {
265
268
if task .condition != nil && ! task .condition () {
266
269
continue
267
270
}
268
- c . TaskPrinter .StartTask (task .name )
269
- w := c . TaskPrinter .TaskWriter ()
271
+ taskPrinter .StartTask (task .name )
272
+ w := taskPrinter .TaskWriter ()
270
273
err := task .fn (w )
271
274
if err != nil {
272
- c . TaskPrinter .Failure (err )
275
+ taskPrinter .Failure (err )
273
276
return err
274
277
}
275
- c . TaskPrinter .Success ()
278
+ taskPrinter .Success ()
276
279
}
277
280
return nil
278
281
}
@@ -287,50 +290,51 @@ func (config *ClientStartConfig) Bind(flags *pflag.FlagSet) {
287
290
}
288
291
289
292
func (c * CommonStartConfig ) Complete (f * osclientcmd.Factory , cmd * cobra.Command ) error {
290
- c .TaskPrinter = NewTaskPrinter (c .Out )
291
293
c .originalFactory = f
292
294
c .command = cmd
293
295
294
296
if len (c .ImageVersion ) == 0 {
295
297
c .ImageVersion = defaultImageVersion ()
296
298
}
297
299
298
- c .addTask ("Checking OpenShift client" , c .CheckOpenShiftClient )
300
+ c .addTask (simpleTask ( "Checking OpenShift client" , c .CheckOpenShiftClient ) )
299
301
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 }) )
301
303
// Get a Docker client.
302
304
// If a Docker machine was specified, make sure that the machine is
303
305
// running. Otherwise, use environment variables.
304
- c .addTask ("Checking Docker client" , c .GetDockerClient )
306
+ c .addTask (simpleTask ( "Checking Docker client" , c .GetDockerClient ) )
305
307
306
308
// 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 ) )
308
310
309
311
// Check for an OpenShift container. If one exists and is running, exit.
310
312
// 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 ) )
312
314
313
315
// Ensure that the OpenShift Docker image is available. If not present,
314
316
// 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 )
316
320
317
321
// Ensure that the Docker daemon has the right --insecure-registry argument. If
318
322
// not, then exit.
319
323
if ! c .SkipRegistryCheck {
320
- c .addTask ("Checking Docker daemon configuration" , c .CheckDockerInsecureRegistry )
324
+ c .addTask (simpleTask ( "Checking Docker daemon configuration" , c .CheckDockerInsecureRegistry ) )
321
325
}
322
326
323
327
// 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 ) )
325
329
326
330
// Check whether the Docker host has the right binaries to use Kubernetes' nsenter mounter
327
331
// 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 ) )
329
333
330
334
// Ensure that host directories exist.
331
335
// If not using the nsenter mounter, create a volume share on the host machine to
332
336
// mount OpenShift volumes.
333
- c .addTask ("Creating host directories" , c .EnsureHostDirectories )
337
+ c .addTask (simpleTask ( "Creating host directories" , c .EnsureHostDirectories ) )
334
338
335
339
// Determine an IP to use for OpenShift.
336
340
// The result is that c.ServerIP will be populated with
@@ -348,7 +352,7 @@ func (c *CommonStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
348
352
// included in the server's certificate. These include any IPs that are currently
349
353
// assigned to the Docker host (hostname -I)
350
354
// 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 ) )
352
356
353
357
return nil
354
358
}
@@ -360,47 +364,49 @@ func (c *ClientStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
360
364
}
361
365
362
366
// 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 ) )
364
368
365
369
// 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 ) )
367
371
368
372
// Install a registry
369
- c .addConditionalTask ( "Installing registry" , c .InstallRegistry , c .ShouldInitializeData )
373
+ c .addTask ( conditionalTask ( "Installing registry" , c .InstallRegistry , c .ShouldInitializeData ) )
370
374
371
375
// Install a router
372
- c .addConditionalTask ( "Installing router" , c .InstallRouter , c .ShouldInitializeData )
376
+ c .addTask ( conditionalTask ( "Installing router" , c .InstallRouter , c .ShouldInitializeData ) )
373
377
374
378
// Install metrics
375
- c .addConditionalTask ("Installing metrics" , c .InstallMetrics , func () bool {
379
+ c .addTask ( conditionalTask ("Installing metrics" , c .InstallMetrics , func () bool {
376
380
return c .ShouldInstallMetrics && c .ShouldInitializeData ()
377
- })
381
+ }))
378
382
379
383
// 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 ) )
381
385
382
386
// Import templates
383
- c .addConditionalTask ( "Importing templates" , c .ImportTemplates , c .ShouldInitializeData )
387
+ c .addTask ( conditionalTask ( "Importing templates" , c .ImportTemplates , c .ShouldInitializeData ) )
384
388
385
389
// Install logging
386
- c .addConditionalTask ("Installing logging" , c .InstallLogging , func () bool {
390
+ c .addTask ( conditionalTask ("Installing logging" , c .InstallLogging , func () bool {
387
391
return c .ShouldInstallLogging && c .ShouldInitializeData ()
388
- })
392
+ }))
389
393
390
394
// 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 ) )
392
396
393
397
// 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 ) )
395
399
396
400
// Remove temporary directory
397
- c .addTask ("Removing temporary directory" , c .RemoveTemporaryDirectory )
401
+ c .addTask (simpleTask ( "Removing temporary directory" , c .RemoveTemporaryDirectory ) )
398
402
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
+ }
401
407
402
408
// Display server information
403
- c .addTask ("Server Information" , c .ServerInfo )
409
+ c .addTask (simpleTask ( "Server Information" , c .ServerInfo ) )
404
410
405
411
return nil
406
412
}
@@ -416,18 +422,44 @@ func (c *ClientStartConfig) Validate(out, errout io.Writer) error {
416
422
417
423
// Start runs the start tasks ensuring that they are executed in sequence
418
424
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 ()
422
452
}
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 ())
429
458
}
430
- c .TaskPrinter .Success ()
459
+ return startError
460
+ }
461
+ if ! bool (glog .V (1 )) {
462
+ c .ServerInfo (out )
431
463
}
432
464
return nil
433
465
}
@@ -790,12 +822,6 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
790
822
return err
791
823
}
792
824
793
- // Start a container networking test
794
- c .containerNetworkErr = make (chan error )
795
- go func () {
796
- c .containerNetworkErr <- c .OpenShiftHelper ().TestContainerNetworking ()
797
- }()
798
-
799
825
// Setup persistent storage
800
826
osClient , kClient , err := c .Clients ()
801
827
if err != nil {
@@ -816,14 +842,15 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
816
842
}
817
843
818
844
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 {
821
848
return errors .NewError ("containers cannot communicate with the OpenShift master" ).
822
849
WithDetails ("The cluster was started. However, the container networking test failed." ).
823
850
WithSolution (
824
851
fmt .Sprintf ("Ensure that access to ports tcp/8443, udp/53 and udp/8053 is allowed on %s.\n " +
825
852
"You may need to open these ports on your machine's firewall." , c .ServerIP )).
826
- WithCause (networkErr )
853
+ WithCause (err )
827
854
}
828
855
return nil
829
856
}
@@ -934,14 +961,13 @@ func (c *ClientStartConfig) ServerInfo(out io.Writer) error {
934
961
if len (c .PublicHostname ) > 0 {
935
962
masterURL = fmt .Sprintf ("https://%s:8443" , c .PublicHostname )
936
963
}
937
- msg := fmt .Sprintf ("OpenShift server started.\n " +
964
+ msg := fmt .Sprintf ("OpenShift server started.\n \n " +
938
965
"The server is accessible via web console at:\n " +
939
966
" %s\n \n %s%s" , masterURL , metricsInfo , loggingInfo )
940
967
941
968
if c .ShouldCreateUser () {
942
969
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 )
945
971
}
946
972
947
973
msg += "To login as administrator:\n " +
0 commit comments