Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LogAndPrint (6.01 sec)

  1. operator/cmd/mesh/operator-remove.go

    	}
    
    	// If the user is performing purge but also specified a revision, we should warn
    	// that the purge will still remove all resources
    	if orArgs.purge && orArgs.revision != "" {
    		orArgs.revision = ""
    		l.LogAndPrint("Purge remove will remove all Istio operator controller, ignoring the specified revision\n")
    	}
    
    	var installed bool
    	if orArgs.revision == "default" {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator-init.go

    	}
    
    	if customResource != "" {
    		if err := applyManifest(kubeClient, client, customResource, name.IstioOperatorComponentName, opts, iop, l); err != nil {
    			l.LogAndFatal(err)
    		}
    	}
    
    	l.LogAndPrint(color.New(color.FgGreen).Sprint("✔ ") + installationCompleteStr)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/install.go

    	} else if processed {
    		p.Println("Made this installation the default for cluster-wide operations.")
    	}
    
    	if iArgs.Verify {
    		if rootArgs.DryRun {
    			l.LogAndPrint("Control plane health check is not applicable in dry-run mode")
    			return nil
    		}
    		l.LogAndPrint("\n\nVerifying installation:")
    		installationVerifier, err := verifier.NewStatusVerifier(kubeClient, client, iop.Namespace, iArgs.ManifestsPath,
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 02 14:30:43 GMT 2024
    - 15.5K bytes
    - Viewed (1)
Back to top