Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lien (0.15 sec)

  1. istioctl/cmd/root.go

    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    	// Allow users to override some variables through $HOME/.istioctl/config.yaml
    	// and environment variables.
    	viper.SetEnvPrefix("ISTIOCTL")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
  2. operator/cmd/mesh/root.go

    settings (--set meshConfig.enableTracing=true). See documentation for more info:` + url.IstioOperatorSpec
    	// ManifestsFlagHelpStr is the command line description for --manifests
    	ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles
    (e.g. ~/Downloads/istio-` + baseVersion + `/manifests).
    `
    )
    
    const (
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    		AmbientEnabled:    viper.GetBool(constants.AmbientEnabled),
    		AmbientDNSCapture: viper.GetBool(constants.AmbientDNSCapture),
    		AmbientIPv6:       viper.GetBool(constants.AmbientIPv6),
    	}
    
    	if len(installCfg.K8sNodeName) == 0 {
    		var err error
    		installCfg.K8sNodeName, err = os.Hostname()
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	repairCfg := config.RepairConfig{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top