@@ -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
@@ -219,12 +227,8 @@ type CommonStartConfig struct {
219
227
containerNetworkErr chan error
220
228
}
221
229
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 )
228
232
}
229
233
230
234
func (config * CommonStartConfig ) Bind (flags * pflag.FlagSet ) {
@@ -261,18 +265,19 @@ func (c *CommonStartConfig) Validate(out io.Writer) error {
261
265
262
266
// Start runs the start tasks ensuring that they are executed in sequence
263
267
func (c * CommonStartConfig ) Start (out io.Writer ) error {
268
+ taskPrinter := NewTaskPrinter (out )
264
269
for _ , task := range c .Tasks {
265
270
if task .condition != nil && ! task .condition () {
266
271
continue
267
272
}
268
- c . TaskPrinter .StartTask (task .name )
269
- w := c . TaskPrinter .TaskWriter ()
273
+ taskPrinter .StartTask (task .name )
274
+ w := taskPrinter .TaskWriter ()
270
275
err := task .fn (w )
271
276
if err != nil {
272
- c . TaskPrinter .Failure (err )
277
+ taskPrinter .Failure (err )
273
278
return err
274
279
}
275
- c . TaskPrinter .Success ()
280
+ taskPrinter .Success ()
276
281
}
277
282
return nil
278
283
}
@@ -287,50 +292,51 @@ func (config *ClientStartConfig) Bind(flags *pflag.FlagSet) {
287
292
}
288
293
289
294
func (c * CommonStartConfig ) Complete (f * osclientcmd.Factory , cmd * cobra.Command ) error {
290
- c .TaskPrinter = NewTaskPrinter (c .Out )
291
295
c .originalFactory = f
292
296
c .command = cmd
293
297
294
298
if len (c .ImageVersion ) == 0 {
295
299
c .ImageVersion = defaultImageVersion ()
296
300
}
297
301
298
- c .addTask ("Checking OpenShift client" , c .CheckOpenShiftClient )
302
+ c .addTask (simpleTask ( "Checking OpenShift client" , c .CheckOpenShiftClient ) )
299
303
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 }) )
301
305
// Get a Docker client.
302
306
// If a Docker machine was specified, make sure that the machine is
303
307
// running. Otherwise, use environment variables.
304
- c .addTask ("Checking Docker client" , c .GetDockerClient )
308
+ c .addTask (simpleTask ( "Checking Docker client" , c .GetDockerClient ) )
305
309
306
310
// 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 ) )
308
312
309
313
// Check for an OpenShift container. If one exists and is running, exit.
310
314
// 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 ) )
312
316
313
317
// Ensure that the OpenShift Docker image is available. If not present,
314
318
// 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 )
316
322
317
323
// Ensure that the Docker daemon has the right --insecure-registry argument. If
318
324
// not, then exit.
319
325
if ! c .SkipRegistryCheck {
320
- c .addTask ("Checking Docker daemon configuration" , c .CheckDockerInsecureRegistry )
326
+ c .addTask (simpleTask ( "Checking Docker daemon configuration" , c .CheckDockerInsecureRegistry ) )
321
327
}
322
328
323
329
// 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 ) )
325
331
326
332
// Check whether the Docker host has the right binaries to use Kubernetes' nsenter mounter
327
333
// 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 ) )
329
335
330
336
// Ensure that host directories exist.
331
337
// If not using the nsenter mounter, create a volume share on the host machine to
332
338
// mount OpenShift volumes.
333
- c .addTask ("Creating host directories" , c .EnsureHostDirectories )
339
+ c .addTask (simpleTask ( "Creating host directories" , c .EnsureHostDirectories ) )
334
340
335
341
// Determine an IP to use for OpenShift.
336
342
// The result is that c.ServerIP will be populated with
@@ -348,7 +354,7 @@ func (c *CommonStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
348
354
// included in the server's certificate. These include any IPs that are currently
349
355
// assigned to the Docker host (hostname -I)
350
356
// 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 ) )
352
358
353
359
return nil
354
360
}
@@ -360,47 +366,49 @@ func (c *ClientStartConfig) Complete(f *osclientcmd.Factory, cmd *cobra.Command)
360
366
}
361
367
362
368
// 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 ) )
364
370
365
371
// 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 ) )
367
373
368
374
// Install a registry
369
- c .addConditionalTask ( "Installing registry" , c .InstallRegistry , c .ShouldInitializeData )
375
+ c .addTask ( conditionalTask ( "Installing registry" , c .InstallRegistry , c .ShouldInitializeData ) )
370
376
371
377
// Install a router
372
- c .addConditionalTask ( "Installing router" , c .InstallRouter , c .ShouldInitializeData )
378
+ c .addTask ( conditionalTask ( "Installing router" , c .InstallRouter , c .ShouldInitializeData ) )
373
379
374
380
// Install metrics
375
- c .addConditionalTask ("Installing metrics" , c .InstallMetrics , func () bool {
381
+ c .addTask ( conditionalTask ("Installing metrics" , c .InstallMetrics , func () bool {
376
382
return c .ShouldInstallMetrics && c .ShouldInitializeData ()
377
- })
383
+ }))
378
384
379
385
// 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 ) )
381
387
382
388
// Import templates
383
- c .addConditionalTask ( "Importing templates" , c .ImportTemplates , c .ShouldInitializeData )
389
+ c .addTask ( conditionalTask ( "Importing templates" , c .ImportTemplates , c .ShouldInitializeData ) )
384
390
385
391
// Install logging
386
- c .addConditionalTask ("Installing logging" , c .InstallLogging , func () bool {
392
+ c .addTask ( conditionalTask ("Installing logging" , c .InstallLogging , func () bool {
387
393
return c .ShouldInstallLogging && c .ShouldInitializeData ()
388
- })
394
+ }))
389
395
390
396
// 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 ) )
392
398
393
399
// 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 ) )
395
401
396
402
// Remove temporary directory
397
- c .addTask ("Removing temporary directory" , c .RemoveTemporaryDirectory )
403
+ c .addTask (simpleTask ( "Removing temporary directory" , c .RemoveTemporaryDirectory ) )
398
404
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
+ }
401
409
402
410
// Display server information
403
- c .addTask ("Server Information" , c .ServerInfo )
411
+ c .addTask (simpleTask ( "Server Information" , c .ServerInfo ) )
404
412
405
413
return nil
406
414
}
@@ -416,18 +424,44 @@ func (c *ClientStartConfig) Validate(out, errout io.Writer) error {
416
424
417
425
// Start runs the start tasks ensuring that they are executed in sequence
418
426
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 ()
422
454
}
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 ())
429
460
}
430
- c .TaskPrinter .Success ()
461
+ return startError
462
+ }
463
+ if ! bool (glog .V (1 )) {
464
+ c .ServerInfo (out )
431
465
}
432
466
return nil
433
467
}
@@ -790,10 +824,15 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
790
824
return err
791
825
}
792
826
827
+ serverIP , err := c .OpenShiftHelper ().ServerIP ()
828
+ if err != nil {
829
+ return err
830
+ }
831
+
793
832
// Start a container networking test
794
833
c .containerNetworkErr = make (chan error )
795
834
go func () {
796
- c .containerNetworkErr <- c .OpenShiftHelper ().TestContainerNetworking ()
835
+ c .containerNetworkErr <- c .OpenShiftHelper ().TestContainerNetworking (serverIP )
797
836
}()
798
837
799
838
// Setup persistent storage
@@ -816,13 +855,17 @@ func (c *ClientStartConfig) StartOpenShift(out io.Writer) error {
816
855
}
817
856
818
857
func (c * ClientStartConfig ) CheckContainerNetworking (out io.Writer ) error {
858
+ serverIP , err := c .OpenShiftHelper ().ServerIP ()
859
+ if err != nil {
860
+ return err
861
+ }
819
862
networkErr := <- c .containerNetworkErr
820
863
if networkErr != nil {
821
864
return errors .NewError ("containers cannot communicate with the OpenShift master" ).
822
865
WithDetails ("The cluster was started. However, the container networking test failed." ).
823
866
WithSolution (
824
867
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 )).
826
869
WithCause (networkErr )
827
870
}
828
871
return nil
@@ -934,19 +977,17 @@ func (c *ClientStartConfig) ServerInfo(out io.Writer) error {
934
977
if len (c .PublicHostname ) > 0 {
935
978
masterURL = fmt .Sprintf ("https://%s:8443" , c .PublicHostname )
936
979
}
937
- msg := fmt .Sprintf ("OpenShift server started.\n " +
980
+ msg := fmt .Sprintf ("OpenShift server started.\n \n " +
938
981
"The server is accessible via web console at:\n " +
939
982
" %s\n \n %s%s" , masterURL , metricsInfo , loggingInfo )
940
983
941
984
if c .ShouldCreateUser () {
942
985
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 "
945
989
}
946
990
947
- msg += "To login as administrator:\n " +
948
- " oc login -u system:admin\n \n "
949
-
950
991
msg += c .checkProxySettings ()
951
992
952
993
fmt .Fprintf (out , msg )
0 commit comments